/* ============================================================
   Best Self. Best Life. — feuille de style partagée
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

:root{
  /* Couleurs */
  --bg:            #fffcfa;
  --band-peach:    #fbe6d3;
  --band-sage:     #eef1e9;
  --green:         #556844;
  --green-hover:   #465537;
  --gold:          #c8a06a;
  --gold-dark:     #9c7a45;
  --ink:           #4b4a42;
  --ink-soft:      #7c7a70;
  --rule:          #e9ddce;
  --white:         #ffffff;

  /* Typo */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1120px;
  --maxw-prose: 760px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img, svg{ display:block; max-width: 100%; }

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

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.prose{
  max-width: var(--maxw-prose);
  margin: 0 auto;
}

/* ---------- Typographie ---------- */

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1{ font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.15rem); }
h3{
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

p{ margin: 0 0 1.3em; }

.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9em;
}

.lede{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  color: var(--green);
  line-height: 1.55;
}

.text-soft{ color: var(--ink-soft); }

/* ---------- Boutons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--green);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn:hover{ background: var(--green-hover); border-color: var(--green-hover); transform: translateY(-1px); }

.btn-outline{
  background: transparent;
  color: var(--green) !important;
  border: 1px solid var(--green);
}
.btn-outline:hover{ background: var(--green); color: var(--white) !important; }

/* ---------- Header / Nav ---------- */

.site-header{
  background: var(--bg);
  padding: 40px 0 0;
}

.brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 34px;
}

.brand-mark{
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-mark img{ width: 128px; height: auto; }

.brand-name{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  color: var(--gold);
}

.main-nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.nav-toggle{ display: none; }

.nav-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0;
}

@media (max-width: 720px){
  .nav-toggle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle-icon{
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .nav-toggle-icon::before,
  .nav-toggle-icon::after{
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle-icon::before{ top: -6px; }
  .nav-toggle-icon::after{ top: 6px; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon{ background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before{ top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after{ top: 0; transform: rotate(-45deg); }

  .nav-links{
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 4px 0 12px;
    border-top: 1px solid var(--rule);
  }
  .nav-links.is-open{ display: flex; }

  .nav-links a{
    padding: 14px 24px;
    text-align: left;
  }
}

.nav-links a{
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a:hover{ background: var(--band-sage); }

.nav-links a.active{
  background: var(--green);
  color: var(--white);
}

/* Décale les ancres pour qu'elles n'atterrissent pas sous le menu fixe */
main section[id]{ scroll-margin-top: 76px; }

/* ---------- Bandes de section ---------- */

.band{ padding: 88px 0; }
.band-peach{ background: var(--band-peach); }
.band-sage{ background: var(--band-sage); }
.band-bg{ background: var(--bg); }
.band-tight{ padding: 64px 0; }

.band + .band{ border-top: 1px solid rgba(0,0,0,0.03); }

.hero{
  text-align: center;
  padding: 96px 0 100px;
}
.hero .eyebrow{ display:block; }
.hero h1{ margin-bottom: 0.4em; }
.hero .lede{ max-width: 720px; margin: 0 auto 0.9em; }
.hero .intro{ max-width: 640px; margin: 0 auto; color: var(--ink-soft); }

/* ---------- Cartes ---------- */

.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.grid-2col{ grid-template-columns: 1fr 1fr; margin-top: 36px; }

@media (max-width: 600px){
  .grid-2col{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 16px 30px -20px rgba(76, 90, 62, 0.35); }

.card h3{ margin-bottom: 0.5em; }
.card p{ color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1em; flex-grow: 1; }
.card .btn-outline{ padding: 9px 20px; font-size: 0.8rem; margin-top: auto; align-self: center; width: min(188px, 100%); text-align: center; }

/* ---------- Divider laurier ---------- */

.leaf-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 0 auto 40px;
  color: var(--gold);
}
.leaf-divider::before, .leaf-divider::after{
  content:"";
  height:1px;
  width: 64px;
  background: var(--rule);
}

/* ---------- Étapes (Déroulement) ---------- */

.steps{
  counter-reset: step;
  display:flex;
  flex-direction: column;
  gap: 0;
}

.step{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid var(--rule);
}
.step:last-child{ border-bottom: 1px solid var(--rule); }

.step-num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.step-body h3{ color: var(--green); font-style: normal; margin-bottom: 0.35em; }
.step-body p{ color: var(--ink-soft); margin-bottom: 0.5em; }
.step-tag{
  display:inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  background: var(--band-sage);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ---------- Tarifs ---------- */

.price-highlight{
  text-align:center;
  padding: 44px 40px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  margin: 0 auto 46px;
  max-width: 520px;
}
.price-highlight .amount{
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--green);
  font-weight: 500;
}
.price-highlight .unit{ font-size: 1rem; color: var(--ink-soft); }

.packages{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 50px;
}
.package{
  text-align:center;
  padding: 32px 20px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
}
.package .num{
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--gold);
  display:block;
  margin-bottom: 4px;
}
.package .label{ font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.03em; }

.modalities{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.modality{
  padding: 26px 24px;
  background: var(--band-sage);
  border-radius: 8px;
}
.modality h3{ font-size: 1.05rem; color: var(--green); font-style: normal; margin-bottom: 0.4em; }
.modality p{ font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Portrait (Qui suis-je) ---------- */

.coach-portrait{
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.coach-portrait img{
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 26px -14px rgba(76, 90, 62, 0.45);
}

/* ---------- Bande photo panoramique ---------- */

.photo-band{
  height: 55vw;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
  position: relative;
}
.photo-band img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.photo-band::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,252,250,0.12) 0%, rgba(255,252,250,0.05) 50%, rgba(255,252,250,0.12) 100%);
}
@media (max-width: 600px){
  .photo-band{ height: 220px; min-height: 0; }
}

/* ---------- Citation ---------- */

.pull-quote{
  text-align:center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  color: var(--green);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Contact ---------- */

.booking-box{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 56px 44px;
}
.booking-box .eyebrow{ margin-bottom: 0.5em; }

.contact-details{
  text-align: center;
  margin: 34px auto 0;
}
.contact-details .contact-links{
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-top: 4px;
}
.contact-details .contact-links a{
  color: var(--green);
  font-weight: 500;
  text-underline-offset: 4px;
}
.contact-details .contact-links a:hover{ color: var(--green-hover); }
.contact-details .sep{ color: var(--rule); margin: 0 14px; }

/* ---------- Bandeau brouillon (mentions légales) ---------- */

.draft-banner{
  max-width: var(--maxw-prose);
  margin: 0 auto 48px;
  padding: 20px 26px;
  background: #fbeee0;
  border: 1px solid #e8c9a0;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #7a5a2e;
}
.draft-banner strong{ color: #6b4d24; }

.legal-block{ margin-bottom: 2.4em; }
.legal-block h2{ font-size: 1.35rem; }
.legal-block h3{ font-style: normal; color: var(--green); font-size: 1.05rem; }
.legal-block ul{ padding-left: 1.2em; color: var(--ink); }
.legal-block li{ margin-bottom: 0.5em; }
.legal-block .placeholder{
  background: #fbeee0;
  padding: 1px 6px;
  border-radius: 4px;
  font-style: italic;
  color: #7a5a2e;
}

.back-link{
  display:inline-block;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.back-link:hover{ color: var(--green); }

/* ---------- CTA bande finale ---------- */

.cta-band{ text-align:center; }
.cta-band h2{ margin-bottom: 0.3em; }
.cta-band p{ color: var(--ink-soft); max-width: 520px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */

.site-footer{
  padding: 54px 0 40px;
  text-align:center;
  border-top: 1px solid var(--rule);
}
.site-footer .brand-mark{ justify-content:center; margin-bottom: 14px; }
.site-footer .brand-mark img{ width: 58px; height: auto; }
.site-footer nav{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 18px;
  margin: 18px 0 20px;
  font-size: 0.82rem;
}
.site-footer nav a:hover{ color: var(--green); }
.site-footer .copyright{ font-size: 0.78rem; color: var(--ink-soft); }
.site-footer .legal-link{ margin-top: 8px; }
.site-footer .legal-link a{
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer .legal-link a:hover{ color: var(--green); }

/* ---------- Responsive ---------- */

@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr 1fr; }
  .packages, .modalities{ grid-template-columns: 1fr; }
  .step{ grid-template-columns: 60px 1fr; }
}

@media (max-width: 600px){
  .band{ padding: 64px 0; }
  .hero{ padding: 70px 0 76px; }
  .grid{ grid-template-columns: 1fr; }
  .container{ padding: 0 22px; }
  .brand-mark img{ width: 92px; height: auto; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Focus visible ---------- */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
