/* ============================================================
   ENK'AÏ — feuille de style principale
   Palette officielle (issue du logo) :
   - Orange mandala   #F18228
   - Orange profond   #D96F15
   - Cuivre           #C89774
   - Cuivre foncé     #A87B5B
   - Pêche            #F7E3D0
   - Pêche pâle       #FBF2E9
   - Gris texte       #4A4A4A
   - Brun charbon     #2B2420
   ============================================================ */

:root {
  --orange:       #F18228;
  --orange-dark:  #D96F15;
  --copper:       #C89774;
  --copper-dark:  #A87B5B;
  --peach:        #F7E3D0;
  --peach-pale:   #FBF2E9;
  --gray-bg:      #F5F4F2;
  --white:        #ffffff;
  --ink:          #4A4A4A;
  --ink-dark:     #262626;
  --brown:        #2B2420;
  --radius:       18px;
  --shadow:       0 18px 50px -18px rgba(43, 36, 32, .18);
  --font-title:   'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Mulish', 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

svg { width: 1.15em; height: 1.15em; vertical-align: -0.2em; }

/* ------------------------------------------------------------
   Boutons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: .8rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .05em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 10px 26px -10px rgba(241, 130, 40, .6);
}
.btn-orange:hover { box-shadow: 0 16px 34px -10px rgba(241, 130, 40, .75); }

.btn-ghost {
  background: rgba(255, 255, 255, .75);
  color: var(--ink-dark);
  border: 1.5px solid var(--copper);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--white); border-color: var(--orange); color: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--orange-dark);
  border: 1.5px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.3rem; font-size: .82rem; }
.btn-block { width: 100%; text-align: center; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  padding: .5rem 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 6px 24px -12px rgba(43, 36, 32, .18);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo img { height: 52px; width: auto; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 42px; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-link {
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: .3rem 0;
  transition: color .3s ease;
}
.nav-link:hover { color: var(--orange-dark); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--orange-dark); }
.btn-nav { padding: .55rem 1.4rem; font-size: .8rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 110;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--ink-dark);
  transition: transform .3s ease, opacity .3s ease;
}
.site-header.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .burger span:nth-child(2) { opacity: 0; }
.site-header.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   Hero — forêt claire (photo du site) + voile blanc
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ink-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}
/* Diaporama en fondu */
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg,
    rgba(255, 255, 255, .95) 0%,
    rgba(255, 255, 255, .82) 45%,
    rgba(251, 242, 233, .55) 100%);
}

/* Mandala décoratif en rotation lente */
.hero-mandala {
  position: absolute;
  right: -8vmin; top: 50%;
  width: 58vmin; height: 58vmin;
  transform: translateY(-50%);
  opacity: .14;
  animation: slowSpin 90s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; }

.hero-kicker {
  font-family: var(--font-title);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.8vw, 4.2rem);
  line-height: 1.15;
  color: var(--ink-dark);
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: normal; color: var(--orange); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: riseUp .9s cubic-bezier(.22, .8, .3, 1) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay: .18s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub {
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 2.2rem;
}
.hero-sub strong { color: var(--orange-dark); font-weight: 700; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero-badges { display: flex; gap: .8rem; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--peach);
  background: rgba(255, 255, 255, .85);
  color: var(--ink);
  box-shadow: 0 6px 18px -10px rgba(43, 36, 32, .2);
}
.badge svg { color: var(--orange); }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid var(--copper);
  border-radius: 14px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--orange);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ------------------------------------------------------------
   Sections génériques
   ------------------------------------------------------------ */
.section { padding: 6.5rem 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-kicker {
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  color: var(--ink-dark);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section-sub { color: var(--ink); font-size: 1.02rem; }

/* Animations reveal (pilotées par main.js) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .8, .3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-2 { transition-delay: .15s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title .line span { transform: none; animation: none; }
  .hero-mandala { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------
   Cartes prestations
   ------------------------------------------------------------ */
.prestations { background: var(--gray-bg); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 151, 116, .18);
  padding: 2.4rem 2rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22, .8, .3, 1), box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -20px rgba(43, 36, 32, .28);
}

.card-featured {
  background: linear-gradient(170deg, var(--peach-pale), var(--peach));
  border: 2px solid var(--orange);
}

.card-flag {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-title);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(241, 130, 40, .7);
}

.card-photo {
  width: calc(100% + 4rem);
  height: 180px;
  object-fit: cover;
  margin: -2.4rem -2rem 1.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-featured .card-photo { margin-top: calc(-2.4rem + 2px); }

.card-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(241, 130, 40, .12);
  color: var(--orange-dark);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card-featured .card-icon { background: rgba(241, 130, 40, .18); }

.card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-dark);
  margin-bottom: .7rem;
  line-height: 1.3;
}

.card-desc { font-size: .95rem; color: var(--ink); margin-bottom: 1.2rem; }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.6rem;
}
.card-tags li {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--peach);
  color: var(--copper-dark);
}
.card-featured .card-tags li { background: var(--white); }

.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200, 151, 116, .25);
}

.card-price .price {
  display: block;
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.card-price .duration { font-size: .8rem; color: var(--copper-dark); letter-spacing: .05em; font-weight: 600; }

.prestations-note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--ink);
  font-size: .98rem;
}
.prestations-note strong { color: var(--orange-dark); }
.prestations-note svg { color: var(--orange); }

/* ------------------------------------------------------------
   À propos
   ------------------------------------------------------------ */
.apropos { background: var(--white); }

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.portrait-frame { position: relative; max-width: 380px; margin-inline: auto; }
.portrait-photo {
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  filter: grayscale(1);
}
.frame-deco {
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: 1;
}
.portrait-mandala {
  position: absolute;
  width: 110px;
  right: -2.6rem; bottom: -2.2rem;
  z-index: 3;
  filter: drop-shadow(0 8px 18px rgba(43, 36, 32, .25));
}

.apropos-text .section-title { margin-bottom: 1.4rem; }
.apropos-text p { color: var(--ink); margin-bottom: 1.1rem; max-width: 56ch; }

.apropos-points { margin: 1.6rem 0 2rem; }
.apropos-points li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .4rem 0;
  color: var(--ink-dark);
}
.apropos-points strong { color: var(--orange-dark); }
.apropos-points svg { color: var(--orange); flex-shrink: 0; }

/* ------------------------------------------------------------
   Stats — bandeau orange (couleur signature)
   ------------------------------------------------------------ */
.stats {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 60%, var(--copper-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  margin-left: .35rem;
  letter-spacing: .08em;
  font-weight: 600;
}
.stat p { font-size: .9rem; color: rgba(255, 255, 255, .85); margin-top: .5rem; }

/* ------------------------------------------------------------
   Bandeau parallaxe — forêt (ratio 1,8)
   ------------------------------------------------------------ */
.parallax-band {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
}
.parallax-bg {
  position: absolute;
  inset: -32% 0;
  background: url('../img/fond-agenda.jpg') center / cover no-repeat;
  will-change: transform;
}
/* Voile simple et transparent */
.parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .45);
}
.band-content { position: relative; z-index: 2; text-align: center; }
.band-quote {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-dark);
  max-width: 660px;
  margin: 0 auto 2rem;
}
.band-quote em { font-style: normal; color: var(--orange-dark); }

/* ------------------------------------------------------------
   Tarifs
   ------------------------------------------------------------ */
.tarifs { background: var(--peach-pale); }

.tarif-box {
  max-width: 560px;
  margin-inline: auto;
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: 3rem 2.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.tarif-amount {
  display: block;
  font-family: var(--font-title);
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.tarif-dur {
  display: block;
  color: var(--copper-dark);
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 1.8rem;
}
.tarif-list {
  display: inline-flex;
  flex-direction: column;
  gap: .55rem;
  text-align: left;
  margin-bottom: 1.8rem;
}
.tarif-list li { display: flex; align-items: baseline; gap: .6rem; color: var(--ink-dark); }
.tarif-list svg { color: var(--orange); }
.tarif-note {
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 2rem;
  max-width: 40ch;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   Réservation — calendrier
   ------------------------------------------------------------ */
.reservation { background: var(--white); }

.bk-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.bk-cal {
  background: var(--white);
  border: 1px solid rgba(200, 151, 116, .25);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.bk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bk-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink-dark);
}
.bk-prev, .bk-next {
  width: 38px; height: 38px;
  border: 1.5px solid var(--peach);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.bk-prev:hover:not(:disabled), .bk-next:hover:not(:disabled) { background: var(--peach-pale); border-color: var(--orange); }
.bk-prev:disabled, .bk-next:disabled { opacity: .3; cursor: default; }

.bk-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  transition: opacity .25s ease;
}
.bk-grid.loading { opacity: .4; }

.bk-dow {
  font-family: var(--font-title);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--copper-dark);
  text-align: center;
  padding-bottom: .3rem;
}

.bk-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.bk-day.libre    { background: #E8F4EA; color: #23662f; }
.bk-day.partiel  { background: var(--peach); color: var(--orange-dark); }
.bk-day.attente  { background: #FDF3D7; color: #8a6d1a; }
.bk-day.complet  { background: #F4D9D3; color: #a33325; cursor: default; }
.bk-day.ferme, .bk-day.passe { background: var(--gray-bg); color: #bbb; cursor: default; }
.bk-day:not(:disabled):hover { transform: scale(1.08); box-shadow: 0 6px 14px -6px rgba(43, 36, 32, .3); }
.bk-day.selected { outline: 2.5px solid var(--orange); outline-offset: 1px; }

.bk-legende {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  margin-top: 1.1rem;
  font-size: .78rem;
  color: var(--ink);
}
.bk-legende li { display: flex; align-items: center; gap: .4rem; }
.lg { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.lg.libre   { background: #E8F4EA; border: 1px solid #bcdcc3; }
.lg.partiel { background: var(--peach); border: 1px solid var(--copper); }
.lg.attente { background: #FDF3D7; border: 1px solid #e6cf8a; }
.lg.complet { background: #F4D9D3; border: 1px solid #e0b0a5; }

.bk-step2 { display: none; }
.bk-step2.open { display: block; animation: bkFade .4s ease; }
@keyframes bkFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.bk-slots-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-dark);
  margin-bottom: .8rem;
}
.bk-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .6rem;
  margin-bottom: 1.4rem;
}
.bk-slot {
  padding: .55rem .4rem;
  border-radius: 999px;
  border: 1.5px solid var(--peach);
  background: var(--white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink-dark);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.bk-slot.libre:hover { border-color: var(--orange); background: var(--peach-pale); transform: translateY(-2px); }
.bk-slot.selected { background: var(--orange); border-color: var(--orange); color: var(--white); }
.bk-slot.attente { background: #FDF3D7; border-color: #e6cf8a; color: #8a6d1a; cursor: default; }
.bk-slot.reserve, .bk-slot.indisponible {
  background: var(--gray-bg);
  border-color: var(--gray-bg);
  color: #bbb;
  cursor: default;
  text-decoration: line-through;
}

.bk-form { display: none; }
.bk-form.open { display: block; animation: bkFade .4s ease; }
.bk-recap-line { font-size: .95rem; margin-bottom: 1.1rem; }
.bk-recap { color: var(--orange-dark); }
.bk-form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--peach);
  border-radius: 10px;
  background: var(--peach-pale);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink-dark);
}
.bk-form select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241, 130, 40, .16); }
.bk-note { font-size: .82rem; color: var(--copper-dark); text-align: center; margin-top: .8rem; }

.bk-msg {
  display: none;
  padding: .9rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.4rem;
  font-size: .95rem;
}
.bk-msg.show { display: block; animation: bkFade .4s ease; }
.bk-msg.ok  { background: #e9f4ea; color: #23662f; border: 1px solid #bcdcc3; }
.bk-msg.err { background: #fbe9e7; color: #a33325; border: 1px solid #f0c4bd; }

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact { background: var(--gray-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-infos { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: 0 10px 30px -16px rgba(43, 36, 32, .15);
  transition: transform .25s ease, box-shadow .25s ease;
  font-size: .95rem;
  color: var(--ink);
}
.contact-item:hover { transform: translateX(6px); box-shadow: 0 14px 36px -16px rgba(43, 36, 32, .25); }
.contact-item strong { color: var(--ink-dark); font-weight: 700; }
.ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(241, 130, 40, .12);
  color: var(--orange-dark);
}
.ci-icon svg { width: 22px; height: 22px; }

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px -16px rgba(43, 36, 32, .15);
  margin-top: .4rem;
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow);
}

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

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-family: var(--font-title);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: .4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--peach);
  border-radius: 10px;
  background: var(--peach-pale);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink-dark);
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 130, 40, .16);
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-msg {
  padding: .9rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  font-size: .95rem;
}
.form-ok { background: #e9f4ea; color: #23662f; border: 1px solid #bcdcc3; }
.form-error { background: #fbe9e7; color: #a33325; border: 1px solid #f0c4bd; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--brown);
  color: rgba(251, 242, 233, .85);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: .8rem; }
.footer-brand p { font-size: .9rem; color: rgba(251, 242, 233, .6); }

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .92rem; transition: color .25s ease; }
.footer-links a:hover { color: var(--orange); }

.footer-contact p { font-size: .9rem; margin-bottom: .4rem; }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(251, 242, 233, .12);
  text-align: center;
  padding: 1.2rem 0;
  font-size: .82rem;
  color: rgba(251, 242, 233, .45);
}

/* ------------------------------------------------------------
   Retour en haut
   ------------------------------------------------------------ */
.back-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 10px 26px -10px rgba(241, 130, 40, .6);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  z-index: 90;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--orange-dark); }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .apropos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .bk-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-links { align-items: center; }
  .hero-mandala { opacity: .08; }
}

@media (max-width: 820px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22, .8, .3, 1);
    z-index: 105;
  }
  .site-header.nav-open .main-nav { transform: translateX(0); }
  .main-nav .nav-link { font-size: 1.1rem; }
  .btn-nav { font-size: .95rem; padding: .8rem 2rem; }
}

@media (max-width: 560px) {
  .section { padding: 4.5rem 0; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem 1.4rem; }
  .tarif-box { padding: 2.2rem 1.6rem; }
  .portrait-mandala { right: -.6rem; }
}
