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

:root {
  --sand:    #f6f2ea;
  --linen:   #ece5d6;
  --sage:    #8fa889;
  --sage-dk: #52693f;
  --sage-x-dk: #3a4d33;
  --gold:    #ab8b52;
  --ink:     #211f1a;
  --ink-lt:  #5a564c;
  --white:   #ffffff;
  --radius:  14px;
  --shadow:  0 12px 40px rgba(33,31,26,.10);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w: 1160px;
  --section-pad: 112px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-dk);
  background: rgba(143,168,137,.16);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--sage-dk); }
.section-sub {
  font-size: 1.02rem;
  color: var(--ink-lt);
  max-width: 560px;
  margin-top: 18px;
}
.section-sub--full { max-width: none; text-align: justify; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-dk);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 16px 34px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .22s, transform .18s;
  white-space: nowrap;
}
.btn:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--sage-dk);
  color: var(--sage-dk);
}
.btn-ghost:hover { background: var(--sage-dk); color: var(--white); }

/* ─── NAV ──────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(246,242,234,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33,31,26,.07);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-logo span { color: var(--sage-dk); font-style: italic; text-transform: none; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  font-size: .84rem;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--ink-lt);
  transition: color .2s;
}
.nav-links a:hover { color: var(--sage-dk); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ─── LANGUAGE SWITCH ──────────────────────────────────────────────── */
.lang-switch { display: flex; align-items: center; gap: 2px; background: rgba(33,31,26,.06); border-radius: 100px; padding: 3px; }
.lang-switch a {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; color: var(--ink-lt);
  padding: 5px 11px; border-radius: 100px; transition: color .2s, background .2s;
}
.lang-switch a:hover { color: var(--sage-dk); }
.lang-switch a.active { background: var(--white); color: var(--sage-dk); box-shadow: 0 1px 4px rgba(33,31,26,.12); }
#hero .lang-switch { background: rgba(255,255,255,.14); }
#hero .lang-switch a { color: rgba(255,255,255,.8); }
#hero .lang-switch a.active { background: rgba(255,255,255,.92); color: var(--sage-x-dk); }
.mobile-lang-switch { display: flex; gap: 10px; margin-top: 6px; }
.mobile-lang-switch a {
  font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; color: var(--ink-lt); padding: 8px 18px; border-radius: 100px;
  background: rgba(33,31,26,.06);
}
.mobile-lang-switch a.active { background: var(--sage-dk); color: var(--white); }

/* ─── HERO ─────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 96px;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/studio.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-media { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-media iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
@media (prefers-reduced-motion: reduce) { .hero-media { display: none; } }
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(33,31,26,.35) 0%, rgba(33,31,26,.35) 40%, rgba(33,31,26,.82) 100%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e7d9b8;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  max-width: 780px;
}
.hero-title em { font-style: italic; color: #cfe0c9; }
.hero-desc {
  margin-top: 26px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.86);
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-strip {
  margin-top: 64px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 28px;
}
.hero-strip .item { color: rgba(255,255,255,.85); font-size: .84rem; letter-spacing: .02em; }
.hero-strip .item strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--white); }

/* ─── STUDIO ───────────────────────────────────────────────────────── */
#studio { padding: var(--section-pad); background: var(--white); }
.studio-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.studio-photo { position: relative; }
.studio-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; aspect-ratio: 4/4.2; object-fit: cover; }
.studio-photo-accent {
  position: absolute; bottom: -26px; left: -26px;
  width: 140px; height: 140px;
  background: var(--sage); opacity: .2; border-radius: 50%;
  z-index: -1;
}
.studio-copy p { font-size: 1rem; color: var(--ink-lt); margin-bottom: 18px; }
.studio-copy p:last-of-type { font-style: italic; color: var(--sage-dk); font-family: var(--font-serif); font-size: 1.25rem; margin-top: 26px; }
.studio-stats { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--sage-dk); line-height: 1; }
.stat-lbl { font-size: .8rem; color: var(--ink-lt); margin-top: 6px; }

/* ─── QUI SUIS-JE ──────────────────────────────────────────────────── */
#coach { padding: var(--section-pad); background: var(--sand); }
.coach-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.coach-photo { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; aspect-ratio: 3.4/4; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.coach-copy p { font-size: 1rem; color: var(--ink-lt); margin-bottom: 18px; }
.lang-pills { display: flex; gap: 10px; margin-top: 8px; }
.lang-pills span {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  background: rgba(143,168,137,.16); color: var(--sage-dk);
  padding: 6px 14px; border-radius: 100px;
}

/* ─── POUR QUI ─────────────────────────────────────────────────────── */
#pourqui { padding: var(--section-pad); background: var(--white); }
.pourqui-head { max-width: 640px; margin-bottom: 60px; }
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.profile-card { border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow); }
.profile-photo { aspect-ratio: 3/4; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform .5s; }
.profile-card:hover .profile-photo img { transform: scale(1.06); }
.profile-body { padding: 28px 26px 32px; }
.profile-body h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 16px; }
.profile-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.profile-body li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-lt); align-items: flex-start; }
.profile-body li::before { content: '—'; color: var(--sage-dk); flex-shrink: 0; }

/* ─── TARIFS ───────────────────────────────────────────────────────── */
#tarifs { padding: var(--section-pad); background: var(--sage-x-dk); color: var(--white); }
#tarifs .section-title { color: var(--white); }
#tarifs .section-sub { color: rgba(255,255,255,.72); }
.tarifs-head { text-align: center; margin-bottom: 64px; }
.tarifs-head .section-sub { margin-left: auto; margin-right: auto; }
.tarifs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tarif-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 40px;
}
.tarif-card .tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #cfe0c9; margin-bottom: 10px;
}
.tarif-card h3 { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 400; margin-bottom: 6px; }
.tarif-card .tarif-note { font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.tarif-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.tarif-table tr { border-bottom: 1px solid rgba(255,255,255,.14); }
.tarif-table tr:last-child { border-bottom: none; }
.tarif-table td { padding: 14px 4px; font-size: .92rem; }
.tarif-table td:first-child { font-weight: 600; }
.tarif-table td:nth-child(2) { text-align: right; font-family: var(--font-serif); font-size: 1.25rem; }
.tarif-table td:nth-child(3) { text-align: right; color: rgba(255,255,255,.6); font-size: .78rem; padding-left: 10px; }
.tarif-essai {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.08); border-radius: 10px; padding: 16px 20px;
  font-size: .9rem;
}
.tarif-essai strong { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; }
.tarif-fine { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 18px; }

/* ─── AVIS ─────────────────────────────────────────────────────────── */
#avis { padding: var(--section-pad); background: var(--white); }
.avis-head { text-align: center; margin-bottom: 60px; }
.avis-head .section-sub { margin-left: auto; margin-right: auto; }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.avis-card {
  background: var(--sand); border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.avis-quote { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--ink); line-height: 1.55; flex-grow: 1; }
.avis-stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.avis-author { font-size: .85rem; font-weight: 600; color: var(--sage-dk); }

/* ─── CONTACT ──────────────────────────────────────────────────────── */
#contact { padding: var(--section-pad); background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 76px; align-items: start; }
.contact-copy h2 { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 400; margin-bottom: 18px; }
.contact-copy > p { font-size: .96rem; color: var(--ink-lt); margin-bottom: 34px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item .ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: rgba(143,168,137,.16); display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.info-item .txt strong { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 3px; }
.info-item .txt span, .info-item .txt a { font-size: .92rem; color: var(--ink-lt); text-decoration: none; }
.info-item .txt a:hover { color: var(--sage-dk); }

.addr-nav { position: relative; display: inline-block; }
.addr-trigger {
  font-family: var(--font-sans); font-size: .92rem; color: var(--ink-lt); text-align: left;
  background: none; border: none; padding: 0; margin: 0; cursor: pointer; line-height: 1.7;
  text-decoration: underline; text-decoration-color: transparent; transition: color .2s, text-decoration-color .2s;
}
.addr-trigger:hover { color: var(--sage-dk); text-decoration-color: currentColor; }
.addr-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden;
  min-width: 160px; flex-direction: column;
}
.addr-menu.open { display: flex; }
.addr-menu a {
  font-size: .86rem; color: var(--ink); text-decoration: none; padding: 12px 18px;
  transition: background .15s;
}
.addr-menu a:hover { background: var(--sand); color: var(--sage-dk); }
.map-embed { margin-top: 8px; border-radius: var(--radius); overflow: hidden; height: 260px; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .8rem; font-weight: 500; letter-spacing: .03em; color: var(--ink-lt); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: .92rem; color: var(--ink);
  background: var(--sand); border: 1.5px solid transparent; border-radius: 10px;
  padding: 13px 16px; outline: none; transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage-dk); background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { font-style: italic; }

/* honeypot: hidden from real visitors, only bots that fill every field trip it */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.captcha-box {
  background: var(--sand); border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.captcha-box .question { font-size: .9rem; font-weight: 500; color: var(--ink); flex: 1 1 auto; }
.captcha-box input {
  font-family: var(--font-sans); font-size: .9rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--linen); border-radius: 8px;
  padding: 8px 14px; width: 72px; outline: none; transition: border-color .2s;
}
.captcha-box input:focus { border-color: var(--sage-dk); }
.captcha-box input::placeholder { font-style: italic; }
.captcha-feedback { font-size: .8rem; margin-top: 4px; }
.captcha-feedback.error { color: #c0392b; }
.captcha-feedback.ok { color: var(--sage-dk); }

.form-notice { font-size: .78rem; color: var(--ink-lt); }
.form-success {
  display: none; background: rgba(143,168,137,.16); border: 1px solid var(--sage);
  border-radius: 10px; padding: 18px 22px; font-size: .92rem; color: var(--sage-dk);
}
.form-success.form-error { background: rgba(192,57,43,.1); border-color: #c0392b; color: #c0392b; }

/* ─── FOOTER ───────────────────────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 52px 48px; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
footer .logo { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); font-weight: 600; text-transform: uppercase; }
footer .logo span { color: var(--sage); font-style: italic; text-transform: none; }
footer .links { display: flex; gap: 26px; flex-wrap: wrap; }
footer .links a { font-size: .8rem; text-decoration: none; color: rgba(255,255,255,.5); transition: color .2s; }
footer .links a:hover { color: var(--white); }
footer .copy { font-size: .76rem; width: 100%; text-align: center; opacity: .55; margin-top: 8px; }

/* ─── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .site-nav { padding: 18px 24px; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }

  .studio-grid, .coach-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .coach-photo { max-width: 340px; margin: 0 auto; }
  .profiles-grid, .tarifs-grid, .avis-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px; }

  footer { padding: 40px 24px; flex-direction: column; text-align: center; }
  footer .links { justify-content: center; }
}

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--sand); flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-serif); font-size: 1.9rem; text-decoration: none; color: var(--ink); }
.mobile-nav a:hover { color: var(--sage-dk); }
.mobile-nav-close { position: absolute; top: 22px; right: 22px; background: none; border: none; font-size: 1.7rem; cursor: pointer; color: var(--ink); }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].visible { opacity: 1; transform: none; }
