/* ORAKLE — feuille de style commune a toutes les pages.
   Palette : creme #FDF7EC, sable #FCEBCE, carte #FFFCF5, brun #2B1D17,
   encre #3B2A22, gris chaud #6B5348, terracotta #A55E45 / #8A4832, peche #E0A184. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FDF7EC;
  color: #2B1D17;
  font-family: Poppins, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
}
a { color: #A55E45; text-decoration: none; }
a:hover { color: #8A4832; }
img, video { max-width: 100%; }
img { height: auto; }
button { font-family: inherit; }
/* overflow-x: clip (et non hidden) : hidden transformerait le conteneur en zone de defilement
   et l'en-tete "sticky" ne resterait plus colle en haut de l'ecran. */
.or_page { width: 100%; overflow-x: clip; }
.wrap { max-width: 1200px; margin: 0 auto; }
section[id] { scroll-margin-top: 76px; }

/* ---------- Typographie ---------- */
.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; color: #A55E45; }
.serif_light { color: #E0A184; }
.h2 { font-size: clamp(32px, 3.6vw, 46px); font-weight: 500; letter-spacing: -.025em; line-height: 1.08; margin: 0; color: #2B1D17; text-wrap: pretty; }
.h2_md { font-size: clamp(30px, 3.4vw, 44px); }
.h2_sm { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; }
.h2_xs { font-size: clamp(26px, 3vw, 36px); line-height: 1.1; }
.h2_xxs { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.1; }
.h2_light { color: #FCEBCE; }
.kicker { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #A55E45; font-weight: 500; margin-bottom: 14px; }
.kicker_light { color: #C98A6E; }
.lead { font-size: 16px; line-height: 1.6; color: #6B5348; margin: 0; }
.pill { display: inline-flex; width: fit-content; align-items: center; gap: 9px; border: 1px solid rgba(165,94,69,.35); border-radius: 999px; padding: 7px 15px; }
.pill_dot { width: 7px; height: 7px; border-radius: 50%; background: #A55E45; display: block; flex: 0 0 auto; }
.pill span:last-child { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #8A4832; font-weight: 500; white-space: nowrap; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-size: 15px; font-weight: 500; white-space: nowrap;
  padding: 15px 28px; border: 1px solid transparent; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn_dark { background: #2B1D17; color: #FCEBCE; }
.btn_dark:hover { background: #A55E45; color: #FDF7EC; transform: translateY(-2px); }
.btn_terra { background: #A55E45; color: #FDF7EC; }
.btn_terra:hover { background: #8A4832; color: #FDF7EC; transform: translateY(-2px); }
.btn_ghost { background: transparent; color: #2B1D17; border-color: rgba(43,29,23,.28); }
.btn_ghost:hover { background: rgba(43,29,23,.06); color: #2B1D17; transform: translateY(-2px); }
.btn_sand { background: #FCEBCE; color: #2B1D17; }
.btn_sand:hover { background: #A55E45; color: #FDF7EC; transform: translateY(-2px); }
.btn_md { padding: 14px 24px; font-size: 14.5px; }
.btn_sm { padding: 13px 24px; font-size: 14px; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Apparition au defilement ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.rv.is_in, html.no_js .rv { opacity: 1; transform: none; }
.rv_d1 { transition-delay: .06s; } .rv_d2 { transition-delay: .12s; } .rv_d3 { transition-delay: .18s; } .rv_d4 { transition-delay: .24s; } .rv_d5 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- En-tete ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(253,247,236,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(165,94,69,.14); }
.hdr_in { max-width: 1200px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 40px; }
.hdr_logo { display: flex; align-items: center; flex: 0 0 auto; }
.hdr_logo img { height: 30px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 26px; flex: 1 1 auto; flex-wrap: nowrap; }
.nav_link { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 400; color: #3B2A22; white-space: nowrap; }
.nav_link:hover { color: #A55E45; }
.nav_link_accent { font-weight: 500; color: #A55E45; }
.nav_link_accent:hover { color: #8A4832; }
.dd { position: relative; display: flex; align-items: center; }
.dd_panel {
  position: absolute; top: calc(100% + 16px); left: -14px; min-width: 298px;
  background: #FDF7EC; border: 1px solid rgba(165,94,69,.18); border-radius: 18px; padding: 10px;
  box-shadow: 0 26px 54px -26px rgba(43,29,23,.5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.dd_panel::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.dd:hover .dd_panel, .dd.is_open .dd_panel, .dd:focus-within .dd_panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dd_item { display: block; padding: 12px 14px; border-radius: 12px; font-size: 14px; line-height: 1.35; color: #3B2A22; transition: background .2s ease, color .2s ease; }
.dd_item:hover { background: #FCEBCE; color: #A55E45; }
.hdr_right { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.hdr_rdv { display: inline-flex; align-items: center; gap: 8px; background: #A55E45; color: #FDF7EC; padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; white-space: nowrap; transition: background .25s ease, transform .25s ease; }
.hdr_rdv:hover { background: #8A4832; color: #FDF7EC; transform: translateY(-1px); }
.burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(165,94,69,.28); background: transparent; cursor: pointer; flex: 0 0 auto; transition: background .2s ease; }
.burger:hover { background: rgba(165,94,69,.08); }
.mnav { display: none; background: #FDF7EC; border-top: 1px solid rgba(165,94,69,.14); padding: 8px 32px 24px; max-height: calc(100vh - 76px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mnav.is_open { display: block; }
.mnav_in { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; }
.mnav_head { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: #A55E45; font-weight: 500; padding: 16px 2px 8px; }
.mnav_head_2 { padding-top: 20px; }
.mnav_link { display: block; padding: 13px 2px; border-bottom: 1px solid rgba(165,94,69,.14); font-size: 15.5px; font-weight: 400; color: #3B2A22; }
.mnav_link:hover { color: #A55E45; }
.mnav_link_accent { font-weight: 500; color: #A55E45; }
.mnav_tel { display: inline-flex; align-items: center; justify-content: center; background: #2B1D17; color: #FCEBCE; padding: 15px 24px; border-radius: 999px; font-size: 15px; font-weight: 500; margin-top: 22px; }
.mnav_tel:hover { background: #A55E45; color: #FDF7EC; }
@media (max-width: 1060px) {
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 480px) {
  .hdr_in { padding: 12px 20px; gap: 16px; }
  .hdr_rdv { padding: 10px 14px; font-size: 13px; }
  .mnav { padding: 8px 20px 24px; }
}

/* ---------- Accueil : hero ---------- */
.hero { background: #FCEBCE; padding: 0 32px; }
.hero_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(320px,1fr) minmax(300px,1.05fr); gap: 56px; align-items: center; min-height: 640px; padding: 72px 0 84px; }
.hero .pill { margin-bottom: 28px; }
.hero h1 { font-size: clamp(42px, 5.2vw, 68px); line-height: 1.03; font-weight: 500; letter-spacing: -.025em; margin: 0 0 22px; color: #2B1D17; text-wrap: pretty; }
.hero_p { font-size: 16.5px; line-height: 1.62; color: #6B5348; margin: 0 0 34px; max-width: 460px; }
.hero_visual { position: relative; }
.hero_img { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3.2; box-shadow: 0 24px 60px -30px rgba(43,29,23,.45); }
.hero_img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(.2,.7,.3,1); }
.hero_img:hover img { transform: scale(1.05); }
@keyframes orakleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero_badge { position: absolute; left: -22px; bottom: 26px; background: #FDF7EC; border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 14px 34px -18px rgba(43,29,23,.4); animation: orakleFloat 6s ease-in-out infinite; }
.hero_badge img { height: 34px; width: auto; display: block; }
.hero_badge_t { display: flex; flex-direction: column; gap: 2px; }
.hero_badge_t span:first-child { font-size: 13.5px; font-weight: 500; color: #2B1D17; }
.hero_badge_t span:last-child { font-size: 12px; color: #6B5348; }

/* ---------- Accueil : chiffres ---------- */
.stats { background: #2B1D17; padding: 56px 32px; }
.stats_grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1.35fr; gap: 40px 36px; align-items: stretch; }
.stat { border-left: 1px solid rgba(252,235,206,.18); padding-left: 24px; }
.stat_n { font-size: 44px; font-weight: 500; color: #FCEBCE; letter-spacing: -.03em; line-height: 1; min-height: 46px; }
.stat_l { font-size: 16px; font-weight: 400; color: #C98A6E; line-height: 1.35; margin-top: 8px; min-height: 44px; }
.stat_s { font-size: 13px; line-height: 1.5; color: rgba(252,235,206,.6); margin-top: 12px; }
.stats_txt p { font-size: 14.5px; line-height: 1.6; color: rgba(252,235,206,.72); margin: 0 0 12px; }
.link_peach { font-size: 14.5px; font-weight: 500; color: #E0A184; border-bottom: 1px solid rgba(224,161,132,.5); padding-bottom: 2px; }
.link_peach:hover { color: #FCEBCE; }
@media (max-width: 1040px) { .stats_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .stats_grid { grid-template-columns: 1fr; } }

/* ---------- Accueil : expertises ---------- */
.spec { padding: 104px 32px 96px; }
.sec_head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; }
.sec_head .h2 { margin-bottom: 16px; }
.sec_head p { font-size: 16px; line-height: 1.6; color: #6B5348; margin: 0; max-width: 440px; }
.sec_head .btn { flex: 0 0 auto; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 24px; }
.card { display: block; background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 22px; padding: 32px 30px 28px; color: inherit; transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.card:hover { border-color: #A55E45; box-shadow: 0 26px 50px -30px rgba(43,29,23,.45); transform: translateY(-6px); color: inherit; }
.card.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.card_ico { width: 58px; height: 58px; border-radius: 16px; background: #FCEBCE; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.card h3 { font-size: 20px; font-weight: 500; letter-spacing: -.015em; margin: 0 0 12px; color: #2B1D17; }
.card p { font-size: 14.5px; line-height: 1.62; color: #6B5348; margin: 0; }
.card_more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-size: 13.5px; font-weight: 500; color: #A55E45; }
.card_more span { font-size: 15px; }
.card_more_muted { color: #8C7364; }
.card_dark { background: #2B1D17; border-radius: 22px; padding: 32px 30px; }
.card_dark h3 { font-size: 19px; font-weight: 500; letter-spacing: -.015em; margin: 0 0 12px; color: #FCEBCE; }
.card_dark p { font-size: 14.5px; line-height: 1.6; color: rgba(252,235,206,.68); margin: 0 0 20px; }
.card_dark a { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: #E0A184; }
.card_dark a:hover { color: #FCEBCE; }

/* ---------- Accueil : equipe ---------- */
.team { padding: 0 32px 104px; }
.team_head { margin-bottom: 48px; }
.banner { background: #2B1D17; border-radius: 22px; padding: 34px 38px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.banner_txt { max-width: 640px; }
.banner_k { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #C98A6E; font-weight: 500; margin-bottom: 12px; }
.banner h3 { font-size: 26px; font-weight: 500; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 10px; color: #FCEBCE; }
.banner p { font-size: 14.5px; line-height: 1.6; color: rgba(252,235,206,.68); margin: 0; }
.team_grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.member { display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.member.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1); }
.member:hover { transform: translateY(-6px); }
.member_ph { position: relative; border-radius: 20px; overflow: hidden; height: 330px; background: #F3E3CB; }
.member_ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member_ph_b { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .5s cubic-bezier(.2,.7,.3,1); }
.member:hover .member_ph_b { opacity: 1; }
.member_card { background: #FCEBCE; border-radius: 18px; padding: 22px 20px; margin-top: 14px; flex: 1 1 auto; display: flex; flex-direction: column; color: inherit; transition: background .25s ease; }
.member_card:hover { background: #F8E2C0; color: inherit; }
.member_name { font-size: 16.5px; font-weight: 500; color: #2B1D17; margin-bottom: 8px; }
.member_role { font-size: 13.5px; color: #6B5348; line-height: 1.55; flex: 1 1 auto; }
.member_more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 13px; font-weight: 500; color: #A55E45; }
.member_more span { font-size: 15px; }
@media (max-width: 1040px) { .team_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .team_grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Accueil : machines ---------- */
.mach { padding: 0 32px 104px; }
.mach_in { max-width: 1200px; margin: 0 auto; background: #2B1D17; border-radius: 28px; padding: 56px; }
.mach_head { max-width: 720px; margin-bottom: 52px; }
.mach_head .h2 { margin-bottom: 18px; }
.mach_head p { font-size: 16px; line-height: 1.62; color: rgba(252,235,206,.7); margin: 0; }
.mach_grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; }
.mach_col_head { display: flex; flex-direction: column; gap: 6px; padding-bottom: 16px; border-bottom: 1px solid rgba(252,235,206,.2); margin-bottom: 28px; }
.mach_tag { display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #FCEBCE; font-weight: 500; padding-bottom: 3px; border-bottom: 1px solid transparent; }
.mach_tag_link { color: #E0A184; border-bottom-color: rgba(224,161,132,.55); transition: color .25s ease, border-color .25s ease; }
.mach_tag_link:hover { color: #FCEBCE; border-color: #FCEBCE; }
.mach_tag_link span { font-size: 14px; letter-spacing: 0; }
.mach_sub { font-size: 12px; color: #C98A6E; }
.mach_list { display: flex; flex-direction: column; gap: 24px; }
.mach_item_t { font-size: 16.5px; font-weight: 500; color: #FCEBCE; margin-bottom: 7px; }
.mach_list > div > p { font-size: 14px; line-height: 1.6; color: rgba(252,235,206,.62); margin: 0; }
.mach_col_alt { display: flex; flex-direction: column; background: rgba(224,161,132,.07); border: 1px solid rgba(224,161,132,.3); border-radius: 22px; padding: 32px 30px; margin: -8px 0; }
.mach_col_alt .mach_col_head { border-bottom-color: rgba(224,161,132,.28); }

/* ---------- Accueil : studio ---------- */
.studio { padding: 0 32px 104px; }
.studio_in { max-width: 1200px; margin: 0 auto; background: #FCEBCE; border-radius: 28px; padding: 56px; display: grid; grid-template-columns: minmax(300px, 1fr) minmax(300px, 1.1fr); gap: 56px; align-items: center; }
.studio_txt .h2 { margin-bottom: 18px; }
.studio_txt p { font-size: 16px; line-height: 1.62; color: #6B5348; margin: 0 0 28px; max-width: 440px; }
.bul { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.bul_i { display: flex; gap: 12px; align-items: flex-start; }
.bul_dot { width: 6px; height: 6px; border-radius: 50%; background: #A55E45; margin-top: 8px; flex: 0 0 auto; }
.bul_i span:last-child { font-size: 15px; line-height: 1.55; color: #3B2A22; }
.studio_ph { display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: 16px; }
.studio_col { display: flex; flex-direction: column; gap: 16px; }
.ph { border-radius: 18px; overflow: hidden; }
.ph img { width: 100%; height: auto; display: block; transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.ph:hover img { transform: scale(1.06); }
.ph_43 { aspect-ratio: 4 / 3; }
.ph_43 img { height: 100%; object-fit: cover; }
.studio_stat { border-radius: 18px; background: #2B1D17; display: flex; flex-direction: column; justify-content: center; padding: 24px; }
.studio_stat_n { font-size: 34px; font-weight: 500; color: #FCEBCE; letter-spacing: -.03em; line-height: 1; }
.studio_stat_l { font-size: 13px; color: rgba(252,235,206,.72); margin-top: 8px; line-height: 1.45; }

/* ---------- Accueil : cabinet ---------- */
.cab { padding: 0 32px 104px; }
.cab_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(300px, 1.15fr) minmax(300px, .95fr); gap: 64px; align-items: center; }
.cab_ph { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cab_txt .h2 { margin-bottom: 18px; }
.cab_txt .lead { max-width: 420px; margin-bottom: 30px; line-height: 1.62; }
.info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }
.info_row { display: flex; gap: 14px; align-items: flex-start; border-top: 1px solid rgba(165,94,69,.2); padding-top: 18px; }
.info_k { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #A55E45; font-weight: 500; width: 92px; flex: 0 0 auto; padding-top: 3px; }
.info_v { font-size: 15.5px; line-height: 1.55; color: #2B1D17; }
a.info_v:hover { color: #A55E45; }

/* ---------- Accueil : FAQ ---------- */
.faq { background: #2B1D17; padding: 96px 32px 80px; }
.faq_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.3fr); gap: 64px; }
.faq_intro .h2 { margin-bottom: 18px; }
.faq_intro p { font-size: 15px; line-height: 1.6; color: rgba(252,235,206,.6); margin: 0; }
.faq_list { display: flex; flex-direction: column; }
.faq_item { border-top: 1px solid rgba(252,235,206,.16); }
.faq_item:last-child { border-bottom: 1px solid rgba(252,235,206,.16); }
.faq_q { width: 100%; background: transparent; border: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; text-align: left; font-size: 16px; font-weight: 400; color: #FCEBCE; }
.faq_ico { font-size: 22px; color: #E0A184; transition: transform .3s ease; flex: 0 0 auto; line-height: 1; }
.faq_item.is_open .faq_ico { transform: rotate(45deg); }
.faq_a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.3,1); }
.faq_a p { font-size: 15px; line-height: 1.62; color: rgba(252,235,206,.66); margin: 0 0 22px; max-width: 620px; }

/* ---------- Pied de page ---------- */
.ftr { background: #2B1D17; padding: 24px 32px 40px; }
.ftr_in { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(252,235,206,.16); padding-top: 56px; display: grid; grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(160px, .7fr)); gap: 48px; }
.ftr_logo { height: 32px; width: auto; display: block; margin-bottom: 20px; }
.ftr_about p { font-size: 14.5px; line-height: 1.6; color: rgba(252,235,206,.6); margin: 0 0 24px; max-width: 340px; }
.ftr_soc { display: flex; gap: 12px; }
.soc { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(252,235,206,.24); display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease; }
.soc:hover { background: rgba(252,235,206,.1); }
.ftr_art { display: block; width: 100%; max-width: 340px; margin-top: 36px; opacity: .75; }
.ftr_col { display: flex; flex-direction: column; gap: 12px; }
.ftr_h { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #C98A6E; font-weight: 500; margin-bottom: 6px; }
.ftr_col a { font-size: 14.5px; color: rgba(252,235,206,.7); }
.ftr_col a:hover { color: #FCEBCE; }
.ftr_col a.ftr_accent, .ftr_about a.ftr_accent { color: #E0A184; font-size: 14.5px; }
.ftr_col a.ftr_accent:hover, .ftr_about a.ftr_accent:hover { color: #FCEBCE; }
.ftr_bot { max-width: 1200px; margin: 56px auto 0; border-top: 1px solid rgba(252,235,206,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ftr_bot span { font-size: 12.5px; color: rgba(252,235,206,.45); }
/* variante des fiches soins : deux colonnes, sans filet superieur */
.ftr_soin { padding: 64px 32px 40px; }
.ftr_soin .ftr_in { border-top: 0; padding-top: 0; grid-template-columns: minmax(280px, 1.2fr) minmax(200px, .8fr); align-items: start; }
.ftr_soin .ftr_about p { margin-bottom: 20px; }
.ftr_soin .ftr_bot { margin-top: 48px; }

/* ---------- Fiches (specialites et soins) : hero ---------- */
.shero { background: #FCEBCE; padding: 0 32px; }
.shero_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(320px, 1.05fr) minmax(300px, .95fr); gap: 56px; align-items: center; padding: 64px 0 72px; }
.back { display: flex; width: fit-content; align-items: center; gap: 8px; font-size: 13px; color: #8A4832; margin-bottom: 26px; }
.back:hover { color: #A55E45; }
.back span { font-size: 15px; }
.shero .pill { margin-bottom: 22px; }
.shero h1 { font-size: clamp(36px, 4.4vw, 58px); line-height: 1.05; font-weight: 500; letter-spacing: -.025em; margin: 0 0 20px; color: #2B1D17; text-wrap: pretty; }
.shero_tag { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: clamp(19px, 2vw, 24px); color: #A55E45; margin: -6px 0 20px; }
.shero_lead { font-size: 17px; line-height: 1.6; color: #6B5348; margin: 0 0 32px; max-width: 480px; }
.shero_img { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3.1; background: #F3E3CB; box-shadow: 0 24px 60px -30px rgba(43,29,23,.45); }
.shero_img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Fiches : blocs communs ---------- */
.sec_intro { padding: 96px 32px 0; }
.intro_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr); gap: 64px; }
.intro_txt .h2 { margin-bottom: 16px; }
.intro_txt p { font-size: 15.5px; line-height: 1.62; color: #6B5348; margin: 0; }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-content: start; }
.tile { background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 20px; padding: 26px 24px; transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.tile.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.tile:hover { border-color: #A55E45; box-shadow: 0 22px 44px -28px rgba(43,29,23,.4); transform: translateY(-5px); }
.tile h3 { font-size: 17px; font-weight: 500; margin: 0 0 10px; color: #2B1D17; }
.tile p { font-size: 14.5px; line-height: 1.6; color: #6B5348; margin: 0; }

.sec_gal { padding: 88px 32px 0; }
.gal_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gal_in figure { margin: 0; display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.gal_ph { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; background: #F3E3CB; }
.gal_ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal_in figcaption { font-size: 13.5px; line-height: 1.55; color: #6B5348; }
.gal_soin { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gal_soin figure { max-width: none; }
.gal_soin .gal_ph { aspect-ratio: auto; height: 340px; }

.sec_ind { padding: 88px 32px 0; }
.ind_in { max-width: 1200px; margin: 0 auto; background: #2B1D17; border-radius: 28px; padding: 52px; display: grid; grid-template-columns: minmax(260px, .75fr) minmax(320px, 1.25fr); gap: 56px; }
.ind_txt .h2 { margin-bottom: 14px; }
.ind_txt p { font-size: 14.5px; line-height: 1.6; color: rgba(252,235,206,.62); margin: 0; }
.ind_list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px 32px; align-content: start; }
.ind_i { display: flex; gap: 12px; align-items: flex-start; border-top: 1px solid rgba(252,235,206,.14); padding-top: 12px; }
.ind_dot { width: 6px; height: 6px; border-radius: 50%; background: #E0A184; margin-top: 8px; flex: 0 0 auto; }
.ind_i span:last-child { font-size: 14.5px; line-height: 1.55; color: rgba(252,235,206,.86); }

.sec_steps { padding: 96px 32px 0; }
.steps_head { margin-bottom: 44px; }
.steps_grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step { background: #FCEBCE; border-radius: 20px; padding: 28px 24px; transition: transform .35s cubic-bezier(.2,.7,.3,1), background .3s ease; }
.step.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1), background .3s ease; }
.step:hover { transform: translateY(-5px); background: #F8E2C0; }
.step_n { font-family: 'Instrument Serif', Georgia, serif; font-size: 34px; font-style: italic; color: #A55E45; line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 17px; font-weight: 500; margin: 0 0 10px; color: #2B1D17; }
.step p { font-size: 14.5px; line-height: 1.6; color: #6B5348; margin: 0; }
.note { margin-top: 26px; border-left: 2px solid #A55E45; padding: 6px 0 6px 20px; }
.note p { font-size: 14px; line-height: 1.6; color: #6B5348; margin: 0; max-width: 760px; }

.sec_prat { padding: 96px 32px 104px; }
.prat_head { margin-bottom: 36px; }
.prat_card { max-width: 1200px; margin: 0 auto; background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 26px; padding: 26px; display: grid; grid-template-columns: minmax(0, .55fr) minmax(0, 1.45fr); gap: 38px; align-items: center; }
.prat_ph { border-radius: 20px; overflow: hidden; height: 360px; background: #F3E3CB; }
.prat_ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prat_body { padding: 8px 14px 8px 0; }
.prat_name { font-size: 26px; font-weight: 500; letter-spacing: -.02em; color: #2B1D17; margin-bottom: 8px; }
.prat_role { font-size: 14px; letter-spacing: .02em; color: #A55E45; font-weight: 500; margin-bottom: 20px; }
.prat_body p { font-size: 15.5px; line-height: 1.62; color: #6B5348; margin: 0 0 26px; max-width: 560px; }
.prat_card_soin { grid-template-columns: minmax(0, .45fr) minmax(0, 1.55fr); }
.prat_card_soin .prat_ph { height: 320px; }

/* ---------- Physio-esthetique : liste des soins ---------- */
.sec_soins { padding: 96px 32px 0; }
.soins_head { margin-bottom: 34px; }
.soins_head .h2 { margin-bottom: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(165,94,69,.32); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 500; color: #8A4832; white-space: nowrap; transition: background .25s ease, color .25s ease, transform .25s ease; }
.chip:hover { background: #A55E45; color: #FDF7EC; transform: translateY(-2px); }
.soin_list { display: flex; flex-direction: column; gap: 22px; }
.soin { scroll-margin-top: 96px; background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 26px; overflow: hidden; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); transition: border-color .3s ease, box-shadow .35s ease; }
.soin.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.soin:hover { border-color: #A55E45; box-shadow: 0 26px 56px -34px rgba(43,29,23,.42); }
.soin_ph { aspect-ratio: 4 / 3; align-self: start; margin: 36px 0 0 36px; border-radius: 18px; overflow: hidden; background: #F3E3CB; }
.soin_ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soin_body { padding: 36px 42px; }
.soin_head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.soin_n { font-family: 'Instrument Serif', Georgia, serif; font-size: 28px; font-style: italic; color: #E0A184; line-height: 1; }
.soin_head a { color: #2B1D17; }
.soin_head a:hover { color: #A55E45; }
.soin_head h3 { font-size: clamp(22px, 2.3vw, 28px); font-weight: 500; letter-spacing: -.02em; margin: 0; color: inherit; }
.soin_tag { font-size: 13.5px; letter-spacing: .02em; color: #A55E45; font-weight: 500; margin-bottom: 18px; }
.soin_body > p { font-size: 15.5px; line-height: 1.62; color: #6B5348; margin: 0 0 22px; max-width: 520px; }
.soin_pts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px 28px; margin-bottom: 24px; }
.pt { display: flex; gap: 10px; align-items: flex-start; border-top: 1px solid rgba(165,94,69,.16); padding-top: 10px; }
.pt_dot { width: 5px; height: 5px; border-radius: 50%; background: #A55E45; margin-top: 8px; flex: 0 0 auto; }
.pt span:last-child { font-size: 14px; line-height: 1.55; color: #6B5348; }
.soin_btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 16px; }
.soin_meta { font-size: 13.5px; color: #9A8377; }

/* ---------- Fiches soins : blocs specifiques ---------- */
.facts { padding: 0 32px; background: #FCEBCE; }
.facts_in { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(165,94,69,.22); display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px 40px; padding: 32px 0 44px; }
.fact { padding: 6px 0; }
.fact_l { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: #A55E45; font-weight: 500; margin-bottom: 8px; }
.fact_v { font-size: 17px; font-weight: 500; color: #2B1D17; line-height: 1.35; }

.sec_conc { padding: 72px 32px 0; }
.sec_conc .kicker { margin-bottom: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { display: inline-flex; align-items: center; border: 1px solid rgba(165,94,69,.3); border-radius: 999px; padding: 9px 17px; font-size: 14px; color: #8A4832; white-space: nowrap; }

.sec_und { padding: 88px 32px 0; }
.und_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px 56px; }
.und_i { border-top: 1px solid rgba(165,94,69,.22); padding-top: 22px; }
.und_i h3 { font-size: 19px; font-weight: 500; letter-spacing: -.015em; margin: 0 0 12px; color: #2B1D17; }
.und_i p { font-size: 15px; line-height: 1.68; color: #6B5348; margin: 0; }

.sec_vid { padding: 88px 32px 0; }
.vid_head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.vid_cap { font-size: 13.5px; color: #9A8377; }
.vid_box { border-radius: 26px; overflow: hidden; background: #2B1D17; border: 1px solid rgba(165,94,69,.18); }
.vid_box video { display: block; width: 100%; height: auto; background: #2B1D17; }

.sec_prep { padding: 88px 32px 0; }
.prep_in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.prep_c { background: #FCEBCE; border-radius: 22px; padding: 34px 32px; }
.prep_c h3 { font-size: 18px; font-weight: 500; margin: 0 0 18px; color: #2B1D17; }
.prep_l { display: flex; flex-direction: column; gap: 10px; }
.prep_l .pt { border-top-color: rgba(165,94,69,.22); }
.prep_l .pt span:last-child { font-size: 14.5px; }

.sec_why { padding: 88px 32px 0; }
.why_in { max-width: 1200px; margin: 0 auto; background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 26px; padding: 42px 44px; }
.why_in .h2 { margin-bottom: 26px; }
.why_grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px 36px; }
.why_i { display: flex; gap: 12px; align-items: flex-start; border-top: 1px solid rgba(165,94,69,.16); padding-top: 12px; }
.why_star { font-size: 14px; color: #A55E45; line-height: 1.6; }
.why_i span:last-child { font-size: 15px; line-height: 1.6; color: #6B5348; }

.sec_tarifs { padding: 96px 32px 0; }
.tarifs_head { margin-bottom: 34px; }
.tarifs_head .h2 { margin-bottom: 14px; }
.tarifs_head p { font-size: 15px; line-height: 1.6; color: #6B5348; margin: 0; max-width: 560px; }
.tarifs_grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); justify-content: start; align-items: stretch; gap: 16px; }
.plan { background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 22px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; max-width: 378px; transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.plan.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.plan:hover { border-color: #A55E45; box-shadow: 0 22px 44px -28px rgba(43,29,23,.4); transform: translateY(-5px); }
.plan_name { font-size: 18px; font-weight: 500; color: #2B1D17; }
.plan p { font-size: 14.5px; line-height: 1.6; color: #6B5348; margin: 0; flex: 1 1 auto; }
.plan_lines { border-top: 1px solid rgba(165,94,69,.18); padding-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.line_l { font-size: 14.5px; color: #6B5348; }
.line_p { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 22px; color: #A55E45; white-space: nowrap; }
.plan_price { border-top: 1px solid rgba(165,94,69,.18); padding-top: 14px; display: flex; align-items: baseline; gap: 8px; }
.price { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 24px; color: #A55E45; }
.unit { font-size: 13px; color: #9A8377; }
.plan_feat { background: #2B1D17; border-color: #A55E45; box-shadow: 0 26px 50px -30px rgba(43,29,23,.5); }
.plan_feat:hover { border-color: #A55E45; box-shadow: 0 30px 58px -28px rgba(43,29,23,.6); }
.plan_feat .plan_name { color: #FCEBCE; }
.plan_feat p { color: rgba(252,235,206,.72); }
.plan_feat .plan_lines { border-top-color: rgba(252,235,206,.22); }
.plan_feat .line_l { color: rgba(252,235,206,.8); }
.plan_feat .line_p { color: #E0A184; }
.badge { align-self: flex-start; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #2B1D17; background: #E0A184; border-radius: 999px; padding: 5px 12px; font-weight: 500; }

.sec_sfaq { padding: 96px 32px 0; }
.sfaq_in { max-width: 900px; margin: 0 auto; }
.sfaq_head { margin-bottom: 28px; }
.sfaq_list { display: flex; flex-direction: column; gap: 10px; }
.sfaq_list details { background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 18px; padding: 20px 24px; }
.sfaq_list summary { font-size: 16px; font-weight: 500; color: #2B1D17; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.sfaq_list summary::-webkit-details-marker { display: none; }
.sfaq_plus { color: #A55E45; font-size: 20px; line-height: 1; flex: 0 0 auto; transition: transform .3s ease; }
.sfaq_list details[open] .sfaq_plus { transform: rotate(45deg); }
.sfaq_list details p { font-size: 15px; line-height: 1.65; color: #6B5348; margin: 14px 0 0; max-width: 720px; }

.sec_caut { padding: 88px 32px 0; }
.caut_in { max-width: 1200px; margin: 0 auto; background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 26px; padding: 42px 44px; display: grid; grid-template-columns: minmax(240px, .7fr) minmax(300px, 1.3fr); gap: 48px; }
.caut_txt h2 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 12px; color: #2B1D17; }
.caut_txt p { font-size: 14px; line-height: 1.6; color: #9A8377; margin: 0; }
.caut_list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px 30px; align-content: start; }

.sec_others { padding: 96px 32px 0; }
.others_head { margin-bottom: 28px; }
.others_grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.ocard { display: block; background: #FFFCF5; border: 1px solid rgba(165,94,69,.18); border-radius: 20px; padding: 26px 24px; color: #2B1D17; transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.ocard.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .35s ease; }
.ocard:hover { border-color: #A55E45; box-shadow: 0 22px 44px -28px rgba(43,29,23,.4); transform: translateY(-5px); color: #2B1D17; }
.ocard_n { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.ocard_t { font-size: 14px; line-height: 1.55; color: #6B5348; margin-bottom: 16px; }
.ocard_m { font-size: 13.5px; font-weight: 500; color: #A55E45; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero_in, .studio_in, .cab_in, .faq_in, .ftr_in, .ftr_soin .ftr_in,
  .shero_in, .intro_in, .ind_in, .prat_card, .prat_card_soin, .soin, .caut_in { grid-template-columns: 1fr; }
  .hero_in { min-height: 0; padding: 56px 0 64px; }
  .sec_head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 44px; }
  .soin_ph { margin: 28px 28px 0; }
  .soin_body { padding: 28px; }
  .prat_ph, .prat_card_soin .prat_ph { height: 320px; }
}
@media (max-width: 700px) {
  .mach_in, .studio_in { padding: 32px; }
  .ind_in { padding: 36px 28px; }
  .why_in, .caut_in { padding: 30px 26px; }
  .banner { padding: 28px 26px; }
  .mach_col_alt { margin: 0; }
  .cab_ph, .studio_ph { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero, .stats, .spec, .team, .mach, .studio, .cab, .faq, .ftr, .ftr_soin,
  .shero, .sec_intro, .sec_gal, .sec_ind, .sec_steps, .sec_prat, .sec_soins, .facts,
  .sec_conc, .sec_und, .sec_vid, .sec_prep, .sec_why, .sec_tarifs, .sec_sfaq, .sec_caut, .sec_others { padding-left: 20px; padding-right: 20px; }
  .hero_badge { left: 12px; bottom: 12px; padding: 12px 14px; }
  .hero_p br { display: none; }
  .spec { padding-top: 80px; padding-bottom: 80px; }
  .team, .mach, .studio, .cab { padding-bottom: 80px; }
  .cab_ph { grid-template-columns: 1fr; }
  .studio_ph { grid-template-columns: 1fr; }
  .studio_col { flex-direction: row; }
  .studio_col > * { flex: 1 1 0; }
  .member_ph { height: 300px; }
  .sec_intro, .sec_steps, .sec_prat, .sec_soins, .sec_tarifs, .sec_sfaq, .sec_others { padding-top: 72px; }
  .sec_prat { padding-bottom: 80px; }
  .plan { max-width: none; }
  .gal_in figure { max-width: none; }
}

/* ---------- Cadrages repris de la maquette (position des photos dans leur cadre) ---------- */
.pos_top img { object-position: 50% 0%; }
.pos_low img { object-position: 50% 68%; }
.pos_left img { object-position: 30% 50%; }
.zoom_133 img { transform: scale(1.33); transform-origin: center; }

/* ---------- Equipe : bouton de rendez-vous dans chaque encadre ---------- */
.member_btns { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 18px; }
.member_btns .member_more { margin-top: 0; }
.btn_xs { padding: 11px 18px; font-size: 13.5px; }

/* hero Physio-esthetique : cadre plus haut pour montrer davantage le visage */
.shero_img_tall { aspect-ratio: 10 / 11; max-height: 560px; margin-left: auto; width: min(100%, 520px); }
