:root {
  --forest: #273222;
  --forest-2: #354230;
  --olive: #747858;
  --sage: #a6aa8a;
  --cream: #f3ecdf;
  --sand: #e8dccb;
  --ink: #263026;
  --white: #fffdf8;
  --muted: #687064;

  --radius: 22px;
  --shadow: 0 18px 50px rgba(39, 50, 34, 0.12);
}

/* =========================
   RÉGLAGES GÉNÉRAUX
   ========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0.3rem 0 1rem;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: auto;
}

.narrow {
  width: min(780px, calc(100% - 2rem));
  margin: auto;
}

.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.7rem;
  background: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* =========================
   EN-TÊTE ET NAVIGATION
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(116, 120, 88, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.brand img {
  width: 145px;
  height: 88px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 1rem;
  font-weight: 600;
}

.main-nav a:not(.btn) {
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
}

.main-nav a.active,
.main-nav a:not(.btn):hover {
  border-color: var(--olive);
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  border: 0;
  background: none;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px;
  background: var(--forest);
}

/* =========================
   BOUTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  color: white;
  font-weight: 600;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  transition: 0.2s;
}

.btn:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--forest);
  background: transparent;
}

.btn-light {
  color: var(--forest);
  background: var(--cream);
  border-color: var(--cream);
}

.btn-small {
  padding: 0.8rem 1.15rem;
  font-size: 1rem;
}

/* Bouton spécifique de la FAQ */

.faq-contact-btn {
  width: 210px;
  min-width: 210px;
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

/* =========================
   ÉLÉMENTS TYPOGRAPHIQUES
   ========================= */

.eyebrow {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro {
  max-width: 720px;
  font-size: 1.12rem;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

/* =========================
   PAGE D’ACCUEIL
   ========================= */

.hero {
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 710px;
  gap: 4rem;
}

.hero-copy {
  padding: 5rem 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--sage);
}

.hero-copy .lead {
  max-width: 620px;
  color: #e8e1d5;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-photo {
  position: relative;
  height: 710px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 220px 220px 0 0;
}

.hero-photo::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--sage);
  border-radius: 50%;
}

/* =========================
   SECTIONS
   ========================= */

.section {
  padding: 6rem 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  color: var(--cream);
  background: var(--forest);
}

.page-hero {
  padding: 5.5rem 0 4rem;
  background: var(--cream);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

/* =========================
   GRILLES ET CARTES
   ========================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.card {
  padding: 2rem;
  background: white;
  border: 1px solid rgba(116, 120, 88, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card .number {
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

.card ul {
  padding-left: 1.2rem;
}

/* =========================
   BLOCS TEXTE + IMAGE
   ========================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.split-media img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =========================
   ÉTIQUETTES ET MODALITÉS
   ========================= */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.pill {
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  border: 1px solid var(--sage);
  border-radius: 999px;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--sand);
  border-radius: 999px;
}

.price {
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.3rem;
}

/* =========================
   BLOCS D’APPEL À L’ACTION
   ========================= */

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem;
  color: white;
  background: var(--olive);
  border-radius: 30px;
}

/* =========================
   PAGE ATELIERS
   Image plus petite à droite
   ========================= */

.atelier-hero {
  overflow: hidden;
  padding: 5rem 0;
  background: var(--cream);
}

.atelier-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 4rem;
}

.atelier-copy {
  min-width: 0;
}

.atelier-copy h1 {
  max-width: 720px;
  margin-bottom: 1rem;
}

.atelier-copy .lead {
  max-width: 620px;
  font-size: 1.15rem;
}

.atelier-photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.atelier-photo::before,
.atelier-photo::after {
  display: none;
}

.atelier-photo img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 460px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 170px 170px 24px 24px;
  box-shadow: var(--shadow);
  transform: none;
}

/* =========================
   FAQ
   ========================= */

details {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(116, 120, 88, 0.35);
}

summary {
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   FORMULAIRE DE CONTACT
   ========================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem;
  font: inherit;
  background: white;
  border: 1px solid #c8c8bd;
  border-radius: 12px;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.notice {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.success {
  background: #e8f3e5;
}

.error {
  background: #f8e2df;
}

/* =========================
   MENTIONS LÉGALES
   ========================= */

.legal h2 {
  margin-top: 2rem;
  font-size: 2rem;
}

/* =========================
   PIED DE PAGE
   ========================= */

.site-footer {
  padding: 4rem 0 1.5rem;
  color: #eee8dc;
  background: #1e261b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-grid h2 {
  font: 600 1rem "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 0.35rem 0;
  color: #e0d9cd;
}

.footer-logo {
  width: 155px;
  height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  color: #bdb8ae;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

/* =========================
   TABLETTES ET PETITS ÉCRANS
   ========================= */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
    background: var(--white);
    border-bottom: 1px solid #ddd;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-copy {
    padding: 4rem 0 2rem;
  }

  .hero-photo {
    height: 520px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   MOBILES
   ========================= */

@media (max-width: 600px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero-photo {
    height: 430px;
  }

  .hero-photo img {
    border-radius: 140px 140px 0 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta {
    padding: 2rem;
  }

  .atelier-hero {
    padding: 4rem 0;
  }

  .atelier-photo img {
    max-width: 280px;
    height: 380px;
  }
}

/* Page Ateliers : conserver l’image à droite sur ordinateur et tablette */

@media (min-width: 701px) {
  .atelier-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.5rem;
    align-items: center;
  }

  .atelier-copy {
    min-width: 0;
  }

  .atelier-copy h1 {
    font-size: clamp(3rem, 6vw, 5.3rem);
  }

  .atelier-photo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .atelier-photo img {
    width: 280px;
    max-width: 280px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 140px 140px 24px 24px;
  }
}

/* Passage en colonne uniquement sur mobile */

@media (max-width: 700px) {
  .atelier-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .atelier-photo {
    justify-content: center;
  }

  .atelier-photo img {
    width: 100%;
    max-width: 320px;
    height: 400px;
  }
}
/* Bouton CTA Ateliers */

.cta-btn{
    min-width:240px;
    height:60px;
    padding:0 32px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    border-radius:999px;
}