/* Charlotte Manna — soft modern aesthetic */

:root{
  --bg:        #fbf6ee;          /* ivory */
  --bg-2:      #f3ead8;          /* parchment */
  --surface:   #ffffff;
  --border:    rgba(110, 78, 30, .14);
  --border-2:  rgba(110, 78, 30, .28);

  --text:      #2c2218;          /* deep warm brown */
  --text-dim:  #6b5a44;
  --text-mute: #9b8a6d;

  --gold:      #c89761;
  --gold-2:    #b3814b;
  --sage:      #7a8f6a;
  --rose:      #d8a99a;

  --grad:      linear-gradient(120deg, #e9c89a, #c89761 55%, #b3814b);
  --grad-soft: linear-gradient(135deg, rgba(233,200,154,.35), rgba(122,143,106,.18));

  --r-md: 14px;
  --r-lg: 22px;

  --max: 1180px;
  --pad: clamp(20px, 4vw, 36px);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body{
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, .h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.15; }

/* ----- floating orbs (background) ----- */
.orb{
  position: fixed;
  top: -20vmin; right: -20vmin;
  width: 70vmin; height: 70vmin;
  background: radial-gradient(circle, rgba(233,200,154,.55) 0%, rgba(233,200,154,0) 65%);
  filter: blur(20px);
  z-index: -2;
  animation: float 28s ease-in-out infinite;
}
.orb--2{
  top: auto; right: auto;
  bottom: -25vmin; left: -25vmin;
  background: radial-gradient(circle, rgba(122,143,106,.32) 0%, rgba(122,143,106,0) 65%);
  animation-duration: 36s; animation-direction: reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0)    scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.08); }
}

/* ----- NAV ----- */
.nav{
  position: fixed; inset: 0 0 auto 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 14px var(--pad);
  z-index: 20;
  background: rgba(251,246,238,.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--border);
  transition: background .35s, backdrop-filter .35s, border-color .35s, box-shadow .35s;
}
.nav.is-scrolled{
  background: rgba(251,246,238,.92);
  box-shadow: 0 8px 24px -16px rgba(110,78,30,.25);
}
.nav__brand{ display: inline-flex; align-items: baseline; gap: 12px; }
.nav__mark{
  font-family: var(--serif); font-weight: 600;
  font-size: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.nav__name{ font-family: var(--serif); font-size: 1.1rem; color: var(--text); }

.nav__brand--logo{
  padding: 2px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.nav__brand--logo .nav__name{
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nav__logo{
  width: 48px;
  height: 48px;
  display: block;
}
@media (max-width: 720px){ .nav__logo{ width: 40px; height: 40px; } }

.nav__links{ display: flex; align-items: center; gap: 4px; }
.nav__links a{
  padding: 10px 14px; border-radius: 999px;
  color: var(--text-dim); font-size: .95rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav__links a:hover{ color: var(--text); background: rgba(110,78,30,.06); }
.nav__cta{
  background: var(--grad); color: #2c2218 !important; font-weight: 600;
  box-shadow: 0 10px 25px -12px rgba(200,151,97,.55);
}
.nav__cta:hover{ filter: brightness(1.05); }

.nav__burger{ display: none; width: 40px; height: 40px; position: relative; }
.nav__burger span{
  position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .25s, opacity .25s, top .25s;
}
.nav__burger span:nth-child(1){ top: 12px } .nav__burger span:nth-child(2){ top: 19px } .nav__burger span:nth-child(3){ top: 26px }

/* ----- shared bits ----- */
.container{ width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section{ padding: clamp(63px, 9vw, 126px) 0; position: relative; }
.section--alt{
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.5) 8%, rgba(255,255,255,.5) 92%, transparent);
}

.eyebrow, .tag{
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  margin: 0 0 14px;
}
.h2{
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  margin: 0 0 12px;
  color: var(--text);
}
.sub{ color: var(--text-dim); margin: 0; max-width: 640px; }
.head{ text-align: center; max-width: 720px; margin: 0 auto 60px; }
.head .sub{ margin: 8px auto 0; }
.lede{ font-size: 1.1rem; color: var(--text-dim); }

.two{
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
}

/* ----- HERO ----- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 130px var(--pad) 90px;
}
.hero__inner{ position: relative; z-index: 2; max-width: 720px; text-align: center; }
.hero__title{
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.02em; line-height: 1.02;
  margin: 0 0 24px;
}
.hero__title em{
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer{ 0%{ background-position: 0% 50%; } 100%{ background-position: 200% 50%; } }

.hero__lede{
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero__ctas{
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

.hero__deco{
  position: absolute;
  width: clamp(320px, 50vw, 520px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1;
  opacity: .9;
  animation: pulse 10s ease-in-out infinite;
}
.hero__rays circle{
  transform-origin: 110px 110px;
  animation: spin 60s linear infinite;
}
.hero__rays circle:nth-child(2){ animation-duration: 80s; animation-direction: reverse; }
.hero__rays circle:nth-child(3){ animation-duration: 100s; }
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes pulse{
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.04); }
}

/* ----- BUTTONS ----- */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500; font-size: 1rem; font-family: var(--sans);
  transition: transform .15s, box-shadow .25s, background .25s, color .25s;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--grad); color: #2c2218;
  box-shadow: 0 16px 30px -12px rgba(200,151,97,.55);
}
.btn--primary:hover{ box-shadow: 0 20px 38px -12px rgba(200,151,97,.7); }
.btn--ghost{
  border: 1px solid var(--border-2); color: var(--text);
  background: rgba(255,255,255,.6);
}
.btn--ghost:hover{ background: var(--surface); }
.btn--block{ width: 100%; justify-content: center; }

/* ----- BANNIÈRE FORÊT (entre hero et présentation) ----- */
.banner-strip{
  position: relative;
  width: 100%;
  max-height: 460px;
  overflow: hidden;
  margin: 0;
}
.banner-strip img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-strip__caption{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 28px;
  background: rgba(251,243,233,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-align: center;
  max-width: 90%;
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px -22px rgba(110,78,30,.4);
}
.banner-strip__caption em{ font-style: italic; }
@media (max-width: 720px){
  .banner-strip{ max-height: 280px; }
  .banner-strip__caption{ display: none; }
}

/* ----- PROFILE (section Je suis) ----- */
.profile{
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin: 0 0 56px;
}
.profile__photo{
  position: relative;
}
.profile__photo img{
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 26px 50px -28px rgba(110, 78, 30, .45);
  display: block;
}
.profile__photo::after{
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: calc(var(--r-lg) + 8px);
  z-index: -1;
  opacity: .35;
  pointer-events: none;
}
.profile__body .tag{ margin-bottom: 8px; }
.profile__body .h2{ margin: 0 0 8px; }
.profile__role{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-2);
  margin: 0 0 22px;
}

.profile__creds{
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid; gap: 8px;
}
.profile__creds li{
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}
.profile__creds li::before{
  content: '✦';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}

.profile__contact{
  list-style: none;
  padding: 22px 24px;
  margin: 0;
  background: var(--bg-2);
  border-radius: var(--r-md);
  display: grid; gap: 12px;
}
.profile__contact li{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: .95rem;
}
.profile__contact li > span:first-child{
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.profile__contact a{
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px dotted var(--gold);
  transition: color .2s;
}
.profile__contact a:hover{ color: var(--gold-2); }
.profile__location em{
  font-style: italic;
  color: var(--text-dim);
  font-size: .88rem;
}

.profile-prose{
  margin: 0 auto;
}
.profile-prose p{ margin: 0 0 16px; }

@media (max-width: 760px) {
  .profile{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile__photo{ max-width: 320px; margin: 0 auto; }
  .profile__contact li{ grid-template-columns: 1fr; gap: 2px; }
}

/* ----- CARDS ----- */
.cards{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card{
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(110, 78, 30, .25);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -32px rgba(200, 151, 97, .45);
  border-color: var(--border-2);
}
.card__num{
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--gold-2);
  margin: 0 0 12px;
  letter-spacing: .05em;
}
.card h3{
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.card p{ margin: 0 0 16px; color: var(--text-dim); }
.chips{
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.chips li{
  font-size: .78rem;
  padding: 4px 11px; border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ----- STAGES ----- */
.stages{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.stage{
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.4));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.stage::before{
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.stage:hover::before{ opacity: 1; }
.stage h3{
  font-size: 1.3rem; margin: 0 0 10px; position: relative; z-index: 1;
}
.stage p{ margin: 0 0 14px; color: var(--text-dim); position: relative; z-index: 1; }
.stage__meta{
  font-family: var(--sans); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold-2);
  position: relative; z-index: 1;
}

/* ----- BOUTIQUE ----- */
.boutique{
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.bcard{
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.bcard:hover{ transform: translateY(-3px); box-shadow: 0 22px 50px -30px rgba(200,151,97,.4); }
.bcard__visual{
  width: 96px; height: 96px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--bg-2), var(--surface));
  border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center;
}
.bcard__visual svg{ width: 60%; height: 60%; }
.bcard h3{ margin: 0 0 8px; font-size: 1.2rem; }
.bcard p{ margin: 0; color: var(--text-dim); font-size: .95rem; }

/* ----- TEMOIGNAGES (masonry 3-col CSS columns) ----- */
.head .sub a{
  color: var(--gold-2);
  border-bottom: 1px dotted currentColor;
}
.head .sub a:hover{ color: var(--gold); }

/* ===== Avis Google (bloc au-dessus du carrousel témoignages) ===== */
.google-reviews-block{
  margin: 0 0 36px;
}
.google-reviews-stats{
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin: 0 0 22px;
  font-family: var(--sans);
}
.google-reviews-rating{ font-size: 1.05rem; }
.google-reviews-rating strong{ font-size: 1.2rem; }
.g-source-badge{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 50%, #FBBC04 75%, #34A853 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.g-review{
  flex: 0 0 340px;
  max-width: 340px;
  scroll-snap-align: start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 14px 28px -20px rgba(110,78,30,.22);
  display: flex; flex-direction: column;
  font-family: var(--sans);
}
@media (max-width: 600px){ .g-review{ flex: 0 0 82vw; max-width: 82vw; } }
.g-review header{
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 12px;
}
.g-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.g-meta{
  display: flex; flex-direction: column; gap: 1px;
  flex: 1; min-width: 0;
}
.g-name{
  font-weight: 600; color: var(--text); font-size: .96rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.g-time{ font-size: .82rem; color: var(--text-mute); }
.g-source{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 50%, #FBBC04 75%, #34A853 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}
.g-stars{
  color: #FBBC04;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.g-text{
  color: var(--text-dim);
  font-size: .94rem;
  line-height: 1.55;
  margin: 0;
}

/* Carousel horizontal — scroll-snap, prev/next, swipe-friendly */
.testimonials-carousel{
  position: relative;
  margin: 0 0 56px;
}
/* Fondu indicateur sur la droite — montre qu'on peut scroller */
.testimonials-carousel::after{
  content: "";
  position: absolute;
  top: 8px; right: 0; bottom: 24px;
  width: 56px;
  pointer-events: none;
  background: linear-gradient(to left, rgba(251,243,233,.95), rgba(251,243,233,0));
  z-index: 3;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  opacity: 1;
  transition: opacity .25s;
}
.testimonials-carousel.is-end::after{ opacity: 0; }
@media (max-width: 600px){
  .testimonials-carousel::after{ width: 40px; }
}
.testimonials-track{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  padding: 8px 4px 24px;
  scroll-padding-left: 4px;
}
.testimonials-track::-webkit-scrollbar{ display: none; }
.testimonials-track:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: var(--r-md);
}

.t-quote{
  flex: 0 0 360px;
  max-width: 360px;
  scroll-snap-align: start;
  padding: 26px 26px;
  background: rgba(255,255,255,.85);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--serif);
  box-shadow: 0 14px 28px -20px rgba(110,78,30,.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 600px){
  .t-quote{ flex-basis: 84vw; max-width: 84vw; }
}
.t-quote p{
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--text);
}
.t-quote footer{
  font-family: var(--sans);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--text-mute);
  margin-top: auto;
}

/* Carousel nav buttons */
.t-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: 0 10px 24px -10px rgba(110,78,30,.4);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold-2);
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s, transform .15s;
}
.t-nav:hover{ background: var(--gold); color: #fff; }
.t-nav:active{ transform: translateY(-50%) scale(.94); }
.t-nav:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }
.t-nav:disabled{ opacity: .35; cursor: default; box-shadow: none; }
.t-nav:disabled:hover{ background: var(--surface); color: var(--gold-2); }
.t-nav--prev{ left: -8px; }
.t-nav--next{ right: -8px; }

@media (max-width: 900px){
  .t-nav{ width: 40px; height: 40px; font-size: 1.5rem; }
  .t-nav--prev{ left: 0; }
  .t-nav--next{ right: 0; }
}
@media (max-width: 600px){
  .t-nav{ display: none; }  /* mobile : swipe natif suffit */
}

/* Testimonial submission form */
.t-form-wrap{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(160deg, #fff, #faedd2);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  box-shadow: 0 26px 60px -32px rgba(200,151,97,.4);
  align-items: center;
}
.t-form-intro .tag{ margin-bottom: 8px; }
.t-form-intro h3{
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--text);
}
.t-form-intro p{
  color: var(--text-dim);
  margin: 0;
}
@media (max-width: 760px){
  .t-form-wrap{
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* ----- PRICES ----- */
.prices{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
}
.price{
  padding: 34px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.price:hover{ transform: translateY(-3px); }
.price--feat{
  background: linear-gradient(160deg, #fff, #faedd2);
  border-color: var(--gold);
  box-shadow: 0 26px 60px -30px rgba(200,151,97,.5);
}
.price h3{ font-size: 1.3rem; margin: 0 0 8px; }
.price__amount{
  font-family: var(--serif); font-style: italic; font-size: 1.55rem;
  color: var(--gold-2);
  margin: 4px 0 12px;
}
.price p:last-child{ color: var(--text-dim); margin: 0; font-size: .95rem; }

/* ----- CAL.COM embed ----- */
.cal-wrap {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 50px -30px rgba(110,78,30,.3);
}
.cal-wrap iframe { border: 0; display: block; width: 100% !important; }

/* ----- Google Maps embed (contact) ----- */
.map-wrap{
  margin: 28px 0 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 10px 10px 12px;
  box-shadow: 0 18px 36px -28px rgba(110,78,30,.25);
}
.map-wrap iframe{ display: block; }
.map-link{
  margin: 10px 4px 0;
  font-size: .92rem;
  text-align: right;
}
.map-link a{
  color: var(--gold-2);
  font-weight: 500;
  border-bottom: 1px dotted currentColor;
}
.map-link a:hover{ color: var(--gold); }

/* ----- CONTACT ----- */
.contact{
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
.form{
  display: grid; gap: 14px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 28px 50px -32px rgba(110,78,30,.25);
}
.form label{ display: grid; gap: 6px; font-size: .92rem; color: var(--text-dim); }
.form label small{ color: var(--text-mute); }
.form input, .form textarea{
  font: inherit; width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,151,97,.18);
}
.form textarea{ resize: vertical; min-height: 120px; }
.form__note{
  margin: 4px 0 0; font-size: .92rem;
  padding: 10px 12px; border-radius: 10px;
}
.form__note.is-ok{ color: #2c2218; background: var(--gold); font-weight: 600; }
.form__note.is-err{ color: var(--text); background: rgba(216,169,154,.25); border: 1px solid var(--rose); }

/* ----- FOOTER ----- */
.foot{
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-mute);
  font-size: .9rem;
  background: rgba(255,255,255,.4);
}
.foot__inner{
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 28px 32px;
  align-items: center;
  justify-items: start;
}
@media (max-width: 720px){
  .foot__inner{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
.foot a{ color: var(--gold-2); }
.foot a:hover{ text-decoration: underline; }

/* Newsletter inline */
.foot__newsletter{
  display: flex; flex-direction: column; gap: 8px;
  width: 100%; max-width: 360px;
  position: relative;
}
.foot__newsletter-title{
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}
.foot__newsletter-sub{
  display: block;
  font-size: .82rem;
  color: var(--text-mute);
  margin-top: 1px;
}
.foot__newsletter-row{
  display: flex; gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  transition: border-color .2s, box-shadow .2s;
}
.foot__newsletter-row:focus-within{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,97,.18);
}
.foot__newsletter-row input[type=email]{
  flex: 1; min-width: 0;
  border: 0; background: transparent;
  padding: 8px 14px;
  font: inherit; font-size: .92rem;
  color: var(--text);
}
.foot__newsletter-row input[type=email]:focus{ outline: none; }
.foot__newsletter-row button{
  border: 0; background: var(--gold-2); color: #fff;
  padding: 9px 18px; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: filter .2s, transform .15s;
}
.foot__newsletter-row button:hover{ filter: brightness(1.08); }
.foot__newsletter-row button:disabled{ opacity: .6; cursor: not-allowed; }
.foot__newsletter-note{
  margin: 4px 0 0;
  padding: 0 8px;
  font-size: .82rem;
  line-height: 1.35;
}
.foot__newsletter-note.is-ok{ color: #15803d; }
.foot__newsletter-note.is-err{ color: #b91c1c; }

/* Réseaux sociaux footer */
.foot__socials{ display: flex; gap: 10px; }
.foot-social{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-mute);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .2s, background .25s, color .25s, border-color .25s;
}
.foot-social:hover{
  transform: translateY(-2px);
  text-decoration: none;
}
.foot-social--yt:hover{ background: #ff0000; color: #fff; border-color: #ff0000; }
.foot-social--ig:hover{ background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.foot-social--g:hover{ background: #fff; color: #4285F4; border-color: #4285F4; }

/* ===========================================================
   TILE IMAGES (Prestations / Initiations / Boutique)
   =========================================================== */

.card--with-img,
.stage--with-img,
.bcard--with-img{
  padding: 0 !important;
  overflow: hidden;
}
.card--with-img > *:not(.card__img),
.stage--with-img > *:not(.stage__img),
.bcard--with-img > *:not(.bcard__img){
  padding-left: 28px;
  padding-right: 28px;
}
.card--with-img > *:not(.card__img):last-child,
.stage--with-img > *:not(.stage__img):last-child,
.bcard--with-img > *:not(.bcard__img):last-child{
  padding-bottom: 28px;
}
.card--with-img > h3:first-of-type,
.stage--with-img > h3:first-of-type,
.bcard--with-img > h3:first-of-type{
  padding-top: 22px;
}

.card__img,
.stage__img,
.bcard__img{
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.card__img img,
.stage__img img,
.bcard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.stage--with-img:hover .stage__img img,
.bcard--with-img:hover .bcard__img img,
.card--with-img:hover .card__img img{
  transform: scale(1.04);
}

/* ===========================================================
   CLICKABLE CARDS (index → detail pages)
   =========================================================== */

.card--link,
.stage--link,
.bcard--link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex; flex-direction: column;
  position: relative;
}
.card--link:hover,
.stage--link:hover,
.bcard--link:hover{
  transform: translateY(-4px);
}
.card--link:focus-visible,
.stage--link:focus-visible,
.bcard--link:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.card__more,
.stage__more,
.bcard__more{
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gold-2);
  letter-spacing: .01em;
  transition: color .2s;
}
.card--link:hover .card__more,
.stage--link:hover .stage__more,
.bcard--link:hover .bcard__more{ color: var(--gold); }

/* ===========================================================
   DETAIL PAGES (archives, initiations, boutique items, médias)
   =========================================================== */

.detail-hero{
  padding: 130px var(--pad) 60px;
  text-align: center;
}
.detail-hero .container{ position: relative; }
.detail-hero__title{
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin: 18px auto 18px;
  max-width: 820px;
  color: var(--text);
}
.detail-hero__title em{
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.detail-hero__lede{
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
}
.back-link{
  display: inline-block;
  margin: 0 0 28px;
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text-dim);
  background: rgba(255,255,255,.5);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.back-link:hover{
  background: var(--surface);
  color: var(--text);
}

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

/* Prose blocks */
.prose{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin: 0 0 36px;
}
.prose p{ margin: 0 0 14px; color: var(--text-dim); }
.prose p:last-child{ margin-bottom: 0; }
.prose__cta-line{
  margin-top: 18px !important;
  color: var(--text) !important;
}

/* Stage / detail card (used on archives, initiations, ateliers) */
.stage-card{
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 36px;
  padding: 38px;
  margin: 0 0 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 50px -32px rgba(110,78,30,.3);
  align-items: start;
}
.stage-card--feat{
  background: linear-gradient(160deg, #fff, #faedd2);
  border-color: var(--gold);
  box-shadow: 0 28px 60px -32px rgba(200,151,97,.5);
}
.stage-card--with-img{
  grid-template-columns: 220px 1fr .9fr;
}
.stage-card--with-img .stage-card__head,
.stage-card--with-img .stage-card__body{
  grid-column: 2;
}
.stage-card--with-img .stage-card__meta{ grid-column: 3; grid-row: 1 / span 2; }

.stage-card__head{ grid-column: 1; }
.stage-card__head h2{
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 6px 0 0;
  color: var(--text);
}
.stage-card__kicker{
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin: 0 0 6px;
}
.stage-card__body{ grid-column: 1; }
.stage-card__body p{ margin: 0 0 12px; color: var(--text-dim); }
.stage-card__body h3{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text);
}
.stage-card__visual{
  grid-column: 1; grid-row: 1 / span 3;
}
.stage-card__visual img{
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 18px 30px -18px rgba(110,78,30,.4);
}
.stage-card__meta{
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  padding: 28px 24px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  position: sticky; top: 90px;
}
.stage-card__price{
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.8rem;
  color: var(--gold-2);
  line-height: 1;
  margin: 0 0 8px;
}
.stage-card__details{
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 14px;
}
.stage-card__warning{
  font-size: .88rem;
  color: var(--gold-2);
  font-weight: 500;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: rgba(200,151,97,.12);
  border: 1px solid rgba(200,151,97,.3);
  border-radius: 999px;
  display: inline-block;
}
.stage-card__warning--prereq{ background: rgba(122,143,106,.12); border-color: rgba(122,143,106,.3); color: var(--sage); }
.stage-card__includes{
  font-size: .9rem;
  color: var(--text-dim);
  margin: 0 0 14px;
  line-height: 1.5;
}
.stage-card__includes span{
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.stage-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid; gap: 10px;
}
.stage-list li{
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
}
.stage-list li::before{
  content: '✦';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}

.stage-location{
  margin: 14px 0 0 !important;
  font-style: italic;
  color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Bijoux canalisés — galerie photos */
.bijoux-gallery{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 32px 0 36px;
}
.bijoux-gallery figure{
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #f7f0e5;
  box-shadow: 0 18px 36px -28px rgba(110,78,30,.22);
  transition: transform .25s, box-shadow .25s;
}
.bijoux-gallery figure:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(200,151,97,.4);
}
.bijoux-gallery img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Product grid (gemmotherapie, bijoux aromatiques) */
.product-grid{
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 0 0 36px;
}
.product-card{
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(110,78,30,.22);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(200,151,97,.4);
}
.product-card__kicker{
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin: 0 0 10px;
}
.product-card h3{
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 14px;
  color: var(--text);
}
.product-card p{ margin: 0 0 12px; color: var(--text-dim); font-size: .95rem; }
.product-card__tip{
  font-size: .88rem !important;
  padding: 8px 12px;
  background: var(--bg-2);
  border-radius: 8px;
  border-left: 2px solid var(--sage);
}
.product-card__price{
  margin-top: auto !important;
  padding-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-2);
  text-align: right;
}

/* Contact CTA card on detail pages */
.contact-card{
  margin: 28px 0 0;
  padding: 32px;
  text-align: center;
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px dashed var(--border-2);
  border-radius: var(--r-lg);
}
.contact-card__title{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin: 0 0 8px;
  color: var(--text);
}
.contact-card p{ color: var(--text-dim); margin: 0 0 16px; }
.contact-card p:last-of-type{ margin-bottom: 18px; }

/* Media (YouTube) grid */
.media-grid{
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.media-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px -28px rgba(110,78,30,.22);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.media-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(200,151,97,.4);
}
.media-card__player{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.media-card__player iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.media-card__body{ padding: 22px 26px 26px; }
.media-card__kicker{
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin: 0 0 8px;
}
.media-card h2{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  color: var(--text);
}

/* Testimonial gallery (Archives Akashiques detail page) */
.testi-gallery{
  margin: 56px 0 0;
}
.testi-gallery__head{
  text-align: center;
  margin: 0 0 32px;
}
.testi-gallery__head .h2{
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 6px 0 0;
}
.testi-gallery__grid{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px){ .testi-gallery__grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .testi-gallery__grid{ grid-template-columns: 1fr; } }

.testi-tile{
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 32px -22px rgba(110,78,30,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -22px rgba(200,151,97,.45);
}
.testi-tile img{
  width: 100%;
  height: auto;
  display: block;
}
.testi-tile:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Responsive overrides for detail pages */
@media (max-width: 820px) {
  .stage-card{
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .stage-card--with-img{ grid-template-columns: 1fr; }
  .stage-card--with-img .stage-card__head,
  .stage-card--with-img .stage-card__body,
  .stage-card--with-img .stage-card__meta,
  .stage-card--with-img .stage-card__visual{
    grid-column: 1; grid-row: auto;
  }
  .stage-card__meta{ position: static; }
  .stage-card__visual img{ max-height: 320px; object-fit: cover; }
}

/* ----- REVEAL ----- */
[data-reveal]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  [data-reveal]{ opacity: 1; transform: none; }
}

/* ----- MOBILE ----- */
@media (max-width: 860px){
  .two{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav__links{
    position: fixed; inset: 64px 12px auto 12px;
    flex-direction: column; align-items: stretch;
    padding: 14px; gap: 4px;
    background: rgba(255,250,240,.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav__links.is-open{ transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a{ padding: 12px 14px; }
  .nav__burger{ display: block; }
  .nav__name{ display: none; }
  .hero__title{ font-size: clamp(2.6rem, 11vw, 4.2rem); }
}
