/* Variables et Palette de Couleurs "Nature et Sérénité" (identique à la v2) */
:root {
  --bg-light: #f7f9f7; /* Blanc cassé / Gris très clair */
  --bg-dark: #ffffff; /* Blanc pur */
  --text-dark: #333333;
  --text-muted: #6a6a6a;
  --accent-green: #5c8577; /* Vert sauge */
  --accent-gold: #b89b5e; /* Or/Ocre */
  --border-color: #e3e8e3; /* Gris très clair pour les lignes */
  --max-width: 1000px;
}

/* Réinitialisation de Base */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg-dark); /* Fond principal blanc */
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}
a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--accent-gold);
}
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typographie */
h1 {
  font-weight: 700;
  font-size: 48px;
  color: var(--bg-dark); /* Blanc pour contraster sur le Vert */
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}
h2 {
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-gold);
  margin: 0 0 35px;
  text-align: center;
  text-transform: uppercase;
}
h3 {
  font-weight: 600;
  color: var(--accent-green);
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ===== BANNIÈRE (HERO) - BLOC DE COULEUR FORTE ===== */
.hero {
  background: var(--accent-green); /* Bloc vert sauge uni */
  padding: 100px 0 80px;
  text-align: center;
}
.hero p {
  max-width: 750px;
  margin: 15px auto 0;
  font-size: 18px;
  color: var(--bg-light); /* Texte clair sur le fond foncé */
}
.hero strong {
  font-weight: 700;
  color: var(--bg-dark); /* Blanc pur pour l'emphase */
}
.location {
  margin: 8px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.icon-location {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: var(--bg-dark); /* Blanc sur le fond vert */
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'><path d='M172.3 501.7C26.4 291 0 269.4 0 192 0 86 86 0 192 0s192 86 192 192c0 77.4-26.4 99-172.3 309.7a24 24 0 0 1-39.4 0zM192 272a80 80 0 1 0 0-160 80 80 0 0 0 0 160z'/></svg>");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}
.section-highlight {
  background: var(
    --bg-light
  ); /* Utilise le blanc cassé pour les sections secondaires */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Cartes et Grilles */
.card {
  background: var(--bg-dark);
  padding: 30px;
  border-radius: 0; /* Pas de coins arrondis, lignes pures */
  border-left: 4px solid var(--accent-gold); /* Ligne d'accentuation Ocre à gauche */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.concept-card {
  max-width: 800px;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Section Cadre & Note */
.note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

/* ===== CONTACT & FORMULAIRE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 1fr; /* Formulaire très large */
  gap: 40px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
label {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 0; /* Pas d'arrondi */
  font-size: 16px;
  margin-top: 8px;
  font-family: inherit;
  background: var(--bg-dark);
}
textarea {
  min-height: 140px;
}
button {
  margin-top: 30px;
  padding: 15px 30px;
  background: var(--accent-gold);
  color: white;
  border: none;
  border-radius: 0; /* Pas d'arrondi */
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #a38953;
}

.contact-info h3 {
  color: var(--accent-gold);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-light);
}

/* Styles injectés via JS pour la barre de cookies */
#cookie-bar a:hover {
  text-decoration: none !important;
  opacity: 0.8;
}
#cookie-bar button:hover {
  background: #a38953;
}
