/* ============================================================
   NGC NATUROPATHIE — styles
   Structure :
   1. Variables & reset
   2. Typographie & utilitaires
   3. Navigation desktop
   4. Menu burger & menu mobile
   5. Hero
   6. Sections communes
   7. Qui suis-je
   8. Prestations
   9. Spécialités
   10. Tarifs
   11. Contact
   12. Footer
   13. Responsive (≤ 768px)
   ============================================================ */

/* ── 1. Variables & reset ─────────────────────────────────── */

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

:root {
  --sage: #6b8f71;
  --sage-light: #a8c5ac;
  --sage-pale: #eff4ef;
  --sage-dark: #2d4832;
  --terra: #b87c52;
  --cream: #fafaf6;
  --off-white: #f3f1eb;
  --charcoal: #1c2420;
  --muted: #6b7069;
  --border: #dde5dc;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.8;
}

/* Reset explicite : seul le <nav> principal hérite des styles de navbar */
nav {
  background: none;
  border: none;
  backdrop-filter: none;
  position: static;
}

/* ── 2. Typographie & utilitaires ─────────────────────────── */

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.btn-primary {
  display: inline-block;
  background: var(--sage-dark);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

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

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--sage-dark);
  padding: 13px 28px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: var(--sage-dark);
  color: #fff;
}

.notice {
  background: #fff;
  border-left: 2px solid var(--terra);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.notice-title {
  display: block;
  color: var(--terra);
  margin-bottom: 4px;
}

/* Background helpers */
.bg-off-white {
  background: var(--off-white);
}
.bg-sage-pale {
  background: var(--sage-pale);
}

/* ── 3. Navigation desktop ───────────────────────────────── */

body > nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 246, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--sage-dark);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo em {
  color: var(--terra);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links > li > a {
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0 13px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover {
  color: var(--sage-dark);
}

.nav-links > li > a.has-dot::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--terra);
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.6;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 19px;
  transition: all 0.2s;
}

.nav-icon:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}

.nav-fb {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 19px;
  transition: all 0.2s;
}

.nav-fb:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}

.nav-cta {
  display: inline-block;
  background: var(--sage-dark);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--sage);
}

/* ── 4. Burger & menu mobile ──────────────────────────────── */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 199;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 1rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--terra);
}
.mobile-menu ul li:last-child a {
  border-bottom: none;
}

.mobile-menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta {
  display: block;
  background: var(--sage-dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.mobile-cta:hover {
  background: var(--sage);
}

.mobile-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.mobile-links a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-links a:hover {
  color: var(--sage-dark);
}

/* ── 5. Hero ──────────────────────────────────────────────── */

.hero {
  min-height: 88vh;
  background: var(--sage-pale);
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terra);
  display: block;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--sage-dark);
  margin-bottom: 2rem;
}

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

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--sage-dark);
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 400;
}

.pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deco::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.hero-deco svg {
  width: 220px;
  height: 220px;
  color: var(--sage);
}

/* ── 6. Sections communes ─────────────────────────────────── */

section {
  padding: 5rem 2.5rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin-bottom: 2rem;
}

.section-intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── 7. Qui suis-je ───────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: start;
}

.divider-v {
  background: var(--border);
}

.about-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-text strong {
  color: var(--charcoal);
  font-weight: 500;
}

.about-tags {
  display: flex;
  flex-direction: column;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.tag-item:last-child {
  border-bottom: none;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.tag-label {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 400;
}

/* ── 8. Prestations ───────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

.service-card:hover {
  background: #fff;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 15px;
  color: var(--terra);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.service-duration {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* ── 9. Spécialités ───────────────────────────────────────── */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

.spec-item {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--sage);
}

.spec-icon {
  width: 30px;
  height: 30px;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}

.spec-icon svg {
  width: 100%;
  height: 100%;
}

.spec-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin-bottom: 0.25rem;
}

.spec-item p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

/* ── 10. Tarifs ───────────────────────────────────────────── */

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}

.tarif-card {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.tarif-card.featured {
  border-color: var(--sage);
  position: relative;
}

.tarif-badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--sage-dark);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.tarif-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin-bottom: 0.25rem;
}

.tarif-duration {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.tarif-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tarif-amount span {
  font-size: 1rem;
  color: var(--muted);
}

.tarif-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── 11. Contact ──────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: start;
}

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

.contact-info .section-intro {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  color: var(--sage);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.contact-detail-text strong {
  color: var(--charcoal);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-quote {
  background: var(--sage-pale);
  padding: 2rem;
  border-left: 2px solid var(--sage);
  margin-bottom: 1.5rem;
}

.contact-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-quote-body {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-quote cite {
  font-style: normal;
}

.contact-quote cite strong {
  font-size: 15px;
  color: var(--sage-dark);
  font-weight: 500;
  display: block;
}

.contact-quote cite span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.partners {
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partners-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 4px;
}

.partners a {
  font-size: 15px;
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.partners a:hover {
  color: var(--terra);
}

/* ── 12. Formulaire de contact ────────────────────────────── */

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

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

.required {
  color: var(--terra);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7069' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.form-legal {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 280px;
  line-height: 1.5;
}

#submitBtn {
  white-space: nowrap;
  min-width: 180px;
  text-align: center;
  position: relative;
}

#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Message de confirmation */
.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
}

.form-success.visible,
.form-error.visible {
  display: block;
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.form-error p {
  font-size: 15px;
  color: var(--terra);
  background: #fff5f0;
  border-left: 2px solid var(--terra);
  padding: 1rem 1.25rem;
  font-weight: 300;
}

/* ── 13. Footer ───────────────────────────────────────────── */

.site-footer {
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer-brand em {
  color: var(--sage-light);
  font-style: italic;
}

.footer-tagline {
  font-size: 15px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.footer-siret {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 8px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.footer-credit-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-credit-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ── 13. Responsive ───────────────────────────────────────── */

@media (max-width: 1060px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-links,
  .nav-right {
    display: none;
  }
  .burger {
    display: flex;
  }

  .hero {
    padding: 3.5rem 1.25rem;
    min-height: auto;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .divider-v {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-links {
    text-align: left;
  }
  .site-footer {
    padding: 2.5rem 1.25rem 1.5rem;
  }
}

/* ── 14. Formulaire de contact ────────────────────────────── */

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Honeypot anti-spam : complètement invisible */
.contact-form input[name="botcheck"] {
  display: none;
}

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

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

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

.required {
  color: var(--terra);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0a8;
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12);
}

/* Flèche personnalisée sur le select */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7069' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--charcoal);
}

.form-group select option[value=""] {
  color: #b0b0a8;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Pied du formulaire */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.form-legal {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  max-width: 260px;
}

/* Bouton submit */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-dark);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Spinner de chargement */
.btn-loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-loader.visible {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Feedbacks confirmation / erreur */
.form-feedback {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: #fff;
}

.form-feedback {
  display: none;
}
.form-feedback.visible {
  display: block;
}

.feedback-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-feedback h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.form-feedback p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.form-feedback p a {
  color: var(--sage-dark);
  text-decoration: underline;
}

.form-success {
  border-color: var(--sage);
}
.form-error {
  border-color: var(--terra);
}

/* ── Responsive formulaire (≤ 768px) ─────────────────────── */

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-legal {
    max-width: 100%;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ── hCaptcha widget ──────────────────────────────────────── */

.h-captcha {
  margin-top: 0.25rem;
}

/* Contour d'erreur si non coché à la soumission */
.h-captcha.error {
  outline: 2px solid var(--terra);
  border-radius: 4px;
}

/* ── 16. Dark mode ────────────────────────────────────────── */

/* Bouton toggle */
.theme-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}

/* Icône : lune par défaut, soleil en dark */
.theme-toggle .icon-moon {
  display: block;
}
.theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

/* Variables dark mode */
[data-theme="dark"] {
  --sage: #7aaa80;
  --sage-light: #7aaa80;
  --sage-pale: #1e2e20;
  --sage-dark: #a8c5ac;
  --terra: #d4956a;
  --cream: #121a13;
  --off-white: #192019;
  --charcoal: #e8ebe4;
  --muted: #8a9e8c;
  --border: #2a3d2c;
}

/* Navbar dark */
[data-theme="dark"] nav {
  background: rgba(18, 26, 19, 0.97);
}

/* Cards & surfaces blanches */
[data-theme="dark"] .service-card,
[data-theme="dark"] .tarif-card,
[data-theme="dark"] .spec-item,
[data-theme="dark"] .notice,
[data-theme="dark"] .partners,
[data-theme="dark"] .contact-quote,
[data-theme="dark"] .form-feedback {
  background: #1e2e20;
}

[data-theme="dark"] .service-card:hover {
  background: #243326;
}

/* Inputs dark */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: #1e2e20;
  color: var(--charcoal);
  border-color: var(--border);
}

[data-theme="dark"] .form-group select {
  color: var(--charcoal);
  border-color: var(--border);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: #4a6b4c;
}

/* Footer dark */
[data-theme="dark"] .site-footer {
  background: #0d150e;
}

/* Mobile menu dark */
[data-theme="dark"] .mobile-menu {
  background: var(--cream);
}

/* Select arrow dark — tout en une seule règle pour éviter les conflits */
[data-theme="dark"] .form-group select {
  background-color: #1e2e20;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9e8c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Transition douce sur tout le document */
body,
nav,
section,
.hero,
.service-card,
.tarif-card,
.spec-item,
.notice,
.site-footer,
.mobile-menu,
.form-group input,
.form-group select,
.form-group textarea {
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.2s ease;
}

/* ── Cookie banner ────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 2.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-link {
  font-size: 14px;
  color: var(--sage-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: #fff;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 500;
}

.cookie-accept:hover {
  background: #fff;
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* Dark mode */
[data-theme="dark"] .cookie-banner {
  background: #0d150e;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.25rem;
  }
  .cookie-inner {
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ── Animations au scroll ─────────────────────────────────── */

/* État initial — éléments invisibles avant animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* État final — visible */
.fade-up.animated,
.fade-in.animated,
.fade-left.animated,
.fade-right.animated {
  opacity: 1;
  transform: translate(0);
}

/* Délais en cascade pour les grilles */
.stagger-1 {
  transition-delay: 0.05s;
}
.stagger-2 {
  transition-delay: 0.12s;
}
.stagger-3 {
  transition-delay: 0.19s;
}
.stagger-4 {
  transition-delay: 0.26s;
}
.stagger-5 {
  transition-delay: 0.33s;
}
.stagger-6 {
  transition-delay: 0.4s;
}
.stagger-7 {
  transition-delay: 0.47s;
}
.stagger-8 {
  transition-delay: 0.54s;
}

/* Respecter les préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in,
  .fade-left,
  .fade-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Bouton WhatsApp flottant ─────────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  max-width: 220px;
  overflow: hidden;
}

.wa-float:hover {
  background: #1ebc59;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.wa-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Animation d'entrée */
.wa-float {
  animation: wa-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s both;
}

@keyframes wa-pop {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Sur mobile : icône seule, pas le label */
@media (max-width: 768px) {
  .wa-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .wa-label {
    display: none;
  }
}

/* Remonter au-dessus du cookie banner quand il est visible */
.cookie-banner.visible ~ .wa-float,
body:has(.cookie-banner.visible) .wa-float {
  bottom: 6rem;
}

/* ── FAQ accordéon ────────────────────────────────────────── */

.faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-question[aria-expanded="true"] {
  color: var(--sage-dark);
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

/* Croix → Plus */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 8px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* État ouvert */
.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--sage);
  background: var(--sage-pale);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--sage-dark);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Réponse — animation hauteur */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  min-height: 0;
  font-size: 16.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
}

/* Le padding ne doit s'appliquer qu'une fois ouvert : sur l'élément qui
   se réduit à 0fr, un padding-bottom fixe empêche la ligne de vraiment
   disparaître (le texte déborde dans cet espace avant d'être coupé). */
.faq-answer.open > p {
  padding-bottom: 1.25rem;
}

/* Dark mode */
[data-theme="dark"] .faq-question {
  color: var(--charcoal);
}
[data-theme="dark"] .faq-question:hover,
[data-theme="dark"] .faq-question[aria-expanded="true"] {
  color: var(--sage-dark);
}

/* ── Badges de confiance ──────────────────────────────────── */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--sage-pale);
  border-radius: 2px;
  border: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  white-space: nowrap;
}

.trust-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Séparateurs entre badges */
.trust-badge:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: var(--border);
}

/* Dark mode */
[data-theme="dark"] .trust-badges {
  background: var(--sage-pale);
  border-color: var(--border);
}

@media (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
    gap: 0.5rem;
  }
  .trust-badge:not(:last-child)::after {
    display: none;
  }
}
