/* ===================== RESET & TOKENS ===================== */
:root {
  --bg:        #faf5f0;
  --bg-blush:  #f2e0d5;
  --ink:       #1d1a17;
  --ink-soft:  #4a423b;
  --muted:     #7d7268;
  --accent:    #c9683c;
  --accent-d:  #a9502a;
  --line:      #e6d7cc;
  --dark:      #1a1512;
  --radius:    18px;
  --shadow:    0 24px 60px -28px rgba(50, 30, 15, 0.45);
  --wrap:      1180px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Archivo', 'Inter', sans-serif;
  --font-serif:'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

p { color: var(--ink-soft); }
p + p { margin-top: 1rem; }
strong { color: var(--ink); font-weight: 600; }
sup { font-size: 0.6em; }

.wrap { width: min(var(--wrap), 90vw); margin-inline: auto; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -12px rgba(201,104,60,.7); }
.btn--accent:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 1.1rem 0;
}
.nav.scrolled { background: rgba(250,245,240,.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding: .7rem 0; }
.nav__inner { width: min(var(--wrap), 92vw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__logo { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; letter-spacing: .06em; color: #fff; transition: color .3s ease; }
.nav__logo span { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--accent); letter-spacing: 0; text-transform: none; }
.nav.scrolled .nav__logo { color: var(--ink); }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); position: relative; transition: color .2s ease; }
.nav__links a::after { content:''; position:absolute; left:0; bottom:-5px; width:0; height:2px; background:var(--accent); transition:width .25s ease; }
.nav__links a:hover::after { width:100%; }
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav.scrolled .nav__links a:hover { color: var(--accent); }
.nav__cta { padding: .6rem 1.4rem; font-size: .9rem; }
.nav__burger { display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.nav__burger span { width:26px; height:2.5px; background:#fff; border-radius:2px; transition: .3s ease; }
.nav.scrolled .nav__burger span { background: var(--ink); }

/* ===================== HERO ===================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -12% 0; z-index: 0;
  background: url('../img/hero-table.jpg') center 30% / cover no-repeat;
  will-change: transform;
}
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(26,21,18,.25), rgba(26,21,18,.72)),
    linear-gradient(to bottom, rgba(26,21,18,.55), rgba(26,21,18,.35) 45%, rgba(26,21,18,.8)); }
.hero__content { position: relative; z-index: 2; color: #fff; padding: 6rem 1.2rem 4rem; max-width: 900px; }
.badge {
  display: inline-block; padding: .55rem 1.4rem; border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 999px; font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.6rem; backdrop-filter: blur(4px);
}
.hero__title { margin: 0; }
.hero__title-main { display: block; font-family: var(--font-head); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3.4rem, 13vw, 8.5rem); letter-spacing: -0.02em; line-height: .92; }
.hero__title-accent { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--accent); font-size: clamp(2.6rem, 10vw, 6.5rem); line-height: 1; margin-top: -.1em; }
.hero__sub { font-size: clamp(1rem, 2.2vw, 1.3rem); margin-top: 1.6rem; color: rgba(255,255,255,.92); font-weight: 400; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__handles { margin-top: 2.4rem; font-size: .85rem; letter-spacing: .12em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__mouse { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.hero__mouse::after { content:''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%,12px);} }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section--blush { background: var(--bg-blush); }
.section--dark { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__head--light h2, .section__head--light .eyebrow { color: #fff; }
.section__lead { margin-top: 1.2rem; font-size: 1.1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 700; color: var(--accent); margin-bottom: .9rem; }
h2 + p, .eyebrow + h2 { margin-top: .4rem; }
.section h2 + p, .section .reveal > p { margin-top: 1.1rem; }
.mt { margin-top: 1.8rem; }

/* ===================== GRIDS ===================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid-2--reverse .media-frame { order: -1; }

.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.media-frame:hover img { transform: scale(1.04); }

.lieu__row { margin-top: clamp(2.5rem, 5vw, 4rem); }
.lieu__text h3 { color: var(--accent); }
.lieu__text h3 + p { margin-top: .7rem; }

/* ===================== LISTS ===================== */
.ticks, .crosses { list-style: none; margin-top: 1rem; display: grid; gap: .7rem; }
.ticks li, .crosses li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.ticks li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.ticks--light li { color: rgba(255,255,255,.9); }
.ticks--light li::before { color: #4ade80; }
.crosses li { color: #fff; }
.crosses li::before { content: '✕'; position: absolute; left: 0; top: 0; color: #a8a8a8; font-weight: 700; }

/* ===================== PARALLAX SECTIONS ===================== */
.parallax-section { overflow: hidden; }
.parallax-bg { position: absolute; inset: -15% 0; z-index: 0; background-size: cover; background-position: center; will-change: transform; }
.parallax-tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(20,15,12,.78), rgba(20,15,12,.82)); }
.parallax-section .wrap { position: relative; z-index: 2; }

/* ===================== CARDS (activités) ===================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 2rem 1.6rem; backdrop-filter: blur(6px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: var(--accent); }
.card__num { font-family: var(--font-serif); font-style: italic; font-size: 2rem; color: var(--accent); display: block; margin-bottom: .6rem; }
.card h3 { color: #fff; margin-bottom: .6rem; }
.card p { color: rgba(255,255,255,.82); font-size: .95rem; }

/* ===================== TIMELINE ===================== */
.timeline { list-style: none; max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before { content:''; position: absolute; left: 92px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline li { display: grid; grid-template-columns: 92px 1fr; gap: 1.6rem; padding: .8rem 0; position: relative; align-items: baseline; }
.timeline__time { font-family: var(--font-head); font-weight: 800; color: var(--accent); text-align: right; font-size: 1.05rem; }
.timeline__label { color: var(--ink-soft); position: relative; padding-left: 1.6rem; }
.timeline__label::before { content:''; position: absolute; left: -8px; top: .5em; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-blush); transform: translateX(-50%); }

/* ===================== REPAS ===================== */
.repas__gallery { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.repas__gallery .media-frame:first-child { aspect-ratio: 4/3; }

/* ===================== COACHS ===================== */
.coachs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); max-width: 960px; margin-inline: auto; }
.coach { text-align: center; }
.coach__photo { width: 220px; height: 220px; margin: 0 auto 1.4rem; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); border: 4px solid #fff; }
.coach__photo img { width: 100%; height: 100%; object-fit: cover; }
.coach__handle { color: var(--accent); }
.coach__role { font-weight: 600; color: var(--ink); margin: .5rem 0 .8rem; font-size: .95rem; }
.coach p { font-size: .96rem; }

/* ===================== TARIFS ===================== */
.pricing__group-title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; color: #fff; font-size: 1.3rem; letter-spacing: .02em; margin: 0 0 1.4rem; text-align: center; }
.pricing__group-title:not(:first-of-type) { margin-top: 3rem; }
.pricing__group-sub { font-family: var(--font-body); font-weight: 400; text-transform: none; font-size: .9rem; color: rgba(255,255,255,.7); letter-spacing: 0; }
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pricing--two { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-inline: auto; }
.price-card {
  background: rgba(255,255,255,.95); color: var(--ink); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--highlight { background: var(--accent); color: #fff; box-shadow: 0 20px 40px -18px rgba(201,104,60,.8); }
.price-card--highlight .price-card__note { color: rgba(255,255,255,.85); }
.price-card__flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 999px; font-weight: 700; }
.price-card h3 { font-size: 1.05rem; min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.price-card__price { font-family: var(--font-head); font-weight: 900; font-size: 2.4rem; margin: .4rem 0; letter-spacing: -0.02em; }
.price-card__note { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.price-card__btn { margin-top: auto; padding: .65rem 1.5rem; font-size: .9rem; }
.price-card--highlight .price-card__btn { background: #fff; color: var(--accent); box-shadow: 0 12px 24px -12px rgba(0,0,0,.35); }
.price-card--highlight .price-card__btn:hover { background: var(--bg-blush); }

.included { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 760px; margin: 3.5rem auto 0; }
.included h4 { color: #fff; margin-bottom: .6rem; }
.modalites { max-width: 720px; margin: 3.5rem auto 0; text-align: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 2.4rem; }
.modalites h4 { color: #fff; margin-bottom: 1rem; }
.modalites p { color: rgba(255,255,255,.88); margin-bottom: 1.6rem; }

/* ===================== FOOTER ===================== */
.footer { background: var(--bg-blush); padding-top: clamp(4rem, 8vw, 6rem); }
.footer__grid { align-items: center; }
.footer__contact h2 { margin: .3rem 0 1rem; }
.footer__contact .media-frame { max-height: 520px; }
.contacts { display: flex; gap: 2.5rem; flex-wrap: wrap; margin: 1.8rem 0; }
.contact { display: grid; gap: .3rem; }
.contact__name { font-family: var(--font-head); font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }
.contact a { color: var(--ink-soft); font-weight: 500; transition: color .2s ease; }
.contact a:hover { color: var(--accent); }
.footer__logo { width: 180px; height: auto; margin-top: .5rem; mix-blend-mode: multiply; }
.footer__bottom { border-top: 1px solid var(--line); margin-top: clamp(3rem, 6vw, 5rem); padding: 1.6rem 0; text-align: center; }
.footer__bottom p { font-size: .82rem; color: var(--muted); }

/* ===================== WHATSAPP ===================== */
.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); transition: transform .2s ease; }
.whatsapp:hover { transform: scale(1.08); }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,245,240,.98); backdrop-filter: blur(12px); padding: 1.4rem 2rem; gap: 1.2rem;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,.2);
  }
  .nav__links.open a { color: var(--ink); }
  .cards { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .coachs, .included, .footer__grid { grid-template-columns: 1fr; }
  .grid-2--reverse .media-frame { order: 0; }
  .cards, .pricing, .pricing--two { grid-template-columns: 1fr; }
  .contacts { gap: 1.4rem; }
  .timeline::before { left: 70px; }
  .timeline li { grid-template-columns: 70px 1fr; gap: 1rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}
