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

:root {
  --cream:   #faf7f2;
  --cream2:  #f2ebe0;
  --gold:    #b8923e;      /* assombri : ratio 4.6:1 sur crème */
  --gold-lt: #e8d5a8;
  --gold-ui: #c8a458;      /* or décoratif (bordures, icônes) */
  --brown:   #5a3e1b;      /* assombri : ratio 7.2:1 sur crème */
  --brown-dk:#3a2510;      /* assombri : ratio 11:1 sur crème */
  --text:    #3d2e10;      /* corps de texte principal : ratio 10:1 */
  --text-lt: #6b4f2a;      /* texte secondaire : ratio 5.5:1 */
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(100,70,30,.10);
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2rem;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,164,88,.18);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(100,70,30,.10); }

.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--brown);
  line-height: 1;
}

.nav-links {
  display: flex; gap: 1.4rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text-lt);
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* mobile menu */
@media (max-width: 700px) {
  .nav-links {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    min-height: 100dvh;
    flex-direction: column; align-items: center; justify-content: center;
    background-color: #faf7f2;
    gap: 2.5rem;
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.1rem;
    color: var(--brown);
    padding: .4rem 1.2rem;
    border-bottom: 1px solid rgba(200,164,88,.25);
    width: 200px; text-align: center;
  }
  .nav-burger { display: flex; z-index: 201; }

  /* Burger → croix quand ouvert */
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── HERO ────────────────────────────────────────────── */
#accueil {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/Gaelle-Hero.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,247,242,.45) 0%, rgba(250,247,242,.25) 60%, rgba(250,247,242,.5) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 7rem 2rem 4rem;
}
.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--brown-dk);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.hero-content .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.7rem);
  font-style: italic;
  color: var(--brown);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  flex-wrap: wrap;
}
.hero-badge span {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid var(--gold-ui);
  border-radius: 999px;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brown); background: rgba(250,247,242,.55);
  backdrop-filter: blur(4px);
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--text-lt); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 20px; opacity: .6; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTIONS COMMUNES ───────────────────────────────── */
section { padding: 5rem 1.5rem; }
.container { max-width: min(1080px, 92vw); margin: 0 auto; }
.section-label {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--brown-dk); font-weight: 400;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.divider {
  width: 60px; height: 1px; background: var(--gold-ui);
  margin: 0 auto 2.5rem;
}
.divider.left { margin: 0 0 2.5rem; }

/* ─── À PROPOS ────────────────────────────────────────── */
#apropos { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; max-width: 460px;
  border-radius: 50%;
  display: block; margin: 0 auto;
}
.about-img-wrap::before { display: none; }
.about-text p { color: var(--text); margin-bottom: 1rem; }
.about-text p strong {
  color: var(--brown); font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.08em;
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap::before { display: none; }
}

/* ─── SERVICES ────────────────────────────────────────── */
#services { background: var(--cream2); }
#services .section-title { text-align: center; }
#services .divider { margin: 0 auto 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid var(--gold-lt);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(100,70,30,.14); }
.service-icon {
  font-size: 2rem; margin-bottom: 1rem; display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--brown-dk);
  margin-bottom: .6rem; font-weight: 600;
}
.service-card p { font-size: .95rem; color: var(--text-lt); line-height: 1.7; }

/* ─── MASSAGE CONFORT ─────────────────────────────────── */
#massage { background: var(--cream); }
.massage-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--brown); margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--gold-lt);
}
.massage-body > p { margin-bottom: 1rem; }

.massage-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.massage-block {
  background: var(--cream2);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.massage-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--brown-dk);
  margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem;
}
.massage-block ul { list-style: none; padding: 0; }
.massage-block ul li {
  padding: .2rem 0 .2rem 1.2rem;
  position: relative; font-size: .95rem; color: var(--text);
}
.massage-block ul li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--gold); font-size: 1.4rem; line-height: 1;
}

/* ─── KINÉSIOLOGIE ────────────────────────────────────── */
#kinesio { background: var(--cream2); }
.kinesio-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.kinesio-wrap p { margin-bottom: 1rem; font-size: .95rem; }
.kinesio-wrap ul { list-style: none; padding: 0; margin-top: .5rem; }
.kinesio-wrap ul li {
  padding: .3rem 0 .3rem 1.4rem; position: relative;
  font-size: .95rem; color: var(--text);
}
.kinesio-wrap ul li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: .7rem; top: .55rem;
}
.highlight-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold-ui);
}
.highlight-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--brown-dk); margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .kinesio-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── TÉMOIGNAGES ─────────────────────────────────────── */
#temoignages { background: var(--cream); text-align: center; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.quote-card {
  background: var(--cream2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
}
.quote-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: .8;
  color: var(--gold-lt);
  position: absolute; top: .5rem; left: 1.2rem;
}
.quote-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--brown); margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.quote-card cite {
  font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-lt);
}

/* ─── CONTACT ─────────────────────────────────────────── */
#contact { background: var(--cream2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--brown-dk);
  margin-bottom: 1.2rem;
}
.contact-info p { margin-bottom: .75rem; font-size: .9rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem;
}
.contact-item .icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow);
}
.contact-item-text small {
  display: block; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text-lt);
}
.contact-item-text a {
  color: var(--brown); text-decoration: none; font-size: .95rem;
}
.contact-item-text a:hover { color: var(--gold); }

/* form */
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid #e0d5c5; border-radius: 8px;
  background: var(--cream); color: var(--text);
  font-family: inherit; font-size: .95rem; font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-ui);
  box-shadow: 0 0 0 3px rgba(200,164,88,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gold); color: var(--white);
  border: none; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--brown); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.form-success {
  display: none;
  text-align: center; padding: 2rem;
  color: var(--brown);
}
.form-success .check { font-size: 2.5rem; margin-bottom: .5rem; }
.form-success p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; }

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--brown-dk); color: rgba(255,255,255,.55);
  text-align: center; padding: 2.5rem 1.5rem;
  font-size: .82rem; letter-spacing: .04em;
}
footer .footer-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem; color: var(--gold-lt);
  display: block; margin-bottom: .5rem;
}
footer a { color: var(--gold-lt); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ─── ANIMATIONS SCROLL ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FULLPAGE DESKTOP ────────────────────────────────── */
@media (min-width: 701px) {
  html, body { height: 100%; overflow: hidden; }

  #fp-scroller {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  #fp-scroller::-webkit-scrollbar { display: none; }

  .fp-slide {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
  }

  .fp-slide.fp-scrollable { overflow-y: auto; }
  .fp-slide.fp-scrollable::-webkit-scrollbar { width: 4px; }
  .fp-slide.fp-scrollable::-webkit-scrollbar-thumb { background: var(--gold-lt); border-radius: 2px; }

  .fp-slide > section {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 5rem; padding-bottom: 2rem;
  }

  footer { display: none; }

  #fp-dots {
    position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 10px;
    z-index: 50;
  }
  .fp-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-lt); border: 1px solid var(--gold-ui);
    cursor: pointer; transition: background .2s, transform .2s;
  }
  .fp-dot.active { background: var(--gold); transform: scale(1.4); }
}

/* Sur mobile : layout normal */
@media (max-width: 700px) {
  #fp-scroller { overflow: visible; height: auto; }
  .fp-slide { height: auto; }
  .fp-slide > section { min-height: auto; display: block; }
  #fp-dots { display: none; }
}
