@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #FDFBF7;
  --bg-alt: #F1EEE7;
  --accent: #1F4E5F;
  --forest: #17414B;
  --forest-dark: #102E35;
  --text-dark: #1E2422;
  --text-light: #FFFFFF;
  --border-soft: rgba(30, 36, 34, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

#header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
}

#header .logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

#header nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

#header nav a {
  font-size: 0.92rem;
  opacity: 0.8;
}

.tel-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
}

#burger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#burger-btn span {
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--text-dark);
  color: #fff;
  padding: 1.6rem 1.4rem;
  display: none;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

.menu-mobile.ouvert {
  display: flex;
  transform: translateY(0);
}

.menu-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.menu-mobile-top .logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #fff;
}

#burger-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.menu-mobile-liens {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
}

.menu-mobile-tel {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #8FC7D1;
  font-weight: 600;
  padding-top: 2rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,17,14,0.75), rgba(20,17,14,0.15) 65%);
}

.hero-content {
  position: relative;
  color: var(--text-light);
  padding: 3rem 4vw 3.5rem;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.95rem;
  color: #8FC7D1;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.hero-content p {
  opacity: 0.9;
  margin-bottom: 1.6rem;
  max-width: 46ch;
}

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

.cta, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border-radius: 2px;
  font-size: 0.95rem;
}

.cta {
  background: var(--accent);
  color: #fff;
}

.cta-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--text-light);
}

section {
  padding: 4.5rem 4vw;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.soustitre {
  opacity: 0.75;
  margin-bottom: 2rem;
  max-width: 55ch;
}

.beam-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--forest) 20%, var(--forest) 80%, transparent);
  opacity: 0.4;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 4vw;
}

.intro-img {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  background-color: var(--bg-alt);
}

.intro-texte p {
  margin-bottom: 1.1rem;
  opacity: 0.85;
}

.liste-prestations {
  list-style: none;
  margin: 1rem 0 1.2rem;
}

.liste-prestations li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.liste-prestations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

#prestations .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.grille-prestations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.carte-prestation {
  position: relative;
  height: 260px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.carte-overlay {
  position: relative;
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(0deg, rgba(20,17,14,0.85), transparent 70%);
  color: #fff;
}

.carte-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.carte-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.prestations-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.prestations-detail h3 {
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.prestations-detail p {
  opacity: 0.85;
  font-size: 0.95rem;
}

#zone p {
  max-width: 60ch;
  font-size: 1.05rem;
  opacity: 0.85;
}

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

.zone-carte {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 1.1rem;
  border-radius: 2px;
}

.zone-carte h3 {
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.zone-carte p {
  font-size: 0.85rem;
  opacity: 0.75;
  max-width: none;
}

.etapes {
  list-style: none;
  counter-reset: etape;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.etapes li {
  counter-increment: etape;
  position: relative;
  padding-left: 2.6rem;
}

.etapes li::before {
  content: counter(etape);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.etapes h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.etapes p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.bandeau-badges {
  background: var(--forest);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.badge {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.badge:last-child {
  border-right: none;
}

.badge strong {
  display: block;
  font-family: 'Fraunces', serif;
  color: #8FC7D1;
  font-size: 1.4rem;
}

.badge span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.galerie-item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  border-radius: 4px;
}

.lien-facebook {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid var(--forest);
}

.grille-avis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.grille-avis blockquote {
  background: var(--bg-alt);
  padding: 1.4rem;
  border-left: 3px solid var(--accent);
  font-size: 0.92rem;
  border-radius: 0;
}

.grille-avis blockquote p {
  margin-bottom: 0.7rem;
  font-style: italic;
}

.grille-avis cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  opacity: 0.7;
}

.cta-avis {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 600;
  border-radius: 2px;
}

.faq-liste {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.92rem;
  opacity: 0.8;
  max-width: 65ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
}

.infos-contact .adresse {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.infos-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.infos-contact a svg {
  color: var(--forest);
  flex-shrink: 0;
}

.horaires {
  margin-top: 0.8rem;
  opacity: 0.75;
  font-size: 0.9rem;
}

#formulaire-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#formulaire-contact label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: -0.4rem;
}

#formulaire-contact input,
#formulaire-contact textarea {
  border: 1px solid var(--border-soft);
  background: var(--bg-alt);
  padding: 0.8rem;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
}

#formulaire-contact textarea {
  min-height: 120px;
  resize: vertical;
}

#formulaire-contact button {
  align-self: flex-start;
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
}

footer {
  background: var(--text-dark);
  color: #fff;
  text-align: center;
  padding: 2rem 4vw;
  font-size: 0.88rem;
  opacity: 0.85;
}

footer a {
  text-decoration: underline;
}

.barre-appel-mobile {
  display: none;
}

@media (max-width: 800px) {
  #nav-desktop {
    display: none;
  }

  .tel-header span {
    display: none;
  }

  #burger-btn {
    display: flex;
  }

  .grille-zone {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 2rem 6vw 2.5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    padding: 3rem 6vw;
  }

  .grille-prestations {
    grid-template-columns: 1fr;
  }

  .prestations-detail {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .etapes {
    grid-template-columns: 1fr;
  }

  .galerie {
    grid-template-columns: 1fr 1fr;
  }

  .grille-avis {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 64px;
  }

  .barre-appel-mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 64px;
  }

  .barre-appel {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--forest);
    color: #fff;
    font-weight: 600;
  }

  .barre-itineraire {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
  }
}
