/*
Theme Name: Dermalmo
Theme URI: https://dermalmo.ma
Author: Dermalmo
Author URI: https://instagram.com/derm_almo
Description: Site vitrine bilingue (français / arabe) pour DERMALMO, Centre de Dermocosmétique Avancée à Meknès. Diagnostic personnalisé, protocoles sur mesure et technologies de pointe (DermaView, HydraBeauty Pro, DermaShin Pro, Omega Light).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dermalmo
*/

/* ---------- Design tokens (d'après les flyers) ---------- */
:root {
  --olive: #3f4a38;
  /* vert profond des bandeaux */
  --olive-deep: #333d2d;
  --sage: #7c8567;
  /* vert sauge (boutons/cadres) */
  --sage-soft: #9aa284;
  --cream: #f6f1e7;
  /* fond crème */
  --cream-2: #efe8d9;
  --paper: #fffdf9;
  --gold: #b89b63;
  /* accent doré */
  --gold-deep: #9c7f47;
  --rose: #c99aa6;
  /* rose poudré (logo) */
  --ink: #2c3227;
  --ink-soft: #5a6150;
  --line: #e3dccb;
  --wa: #25d366;
  --wa-dark: #1da851;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ar: "Noto Kufi Arabic", "Cairo", var(--sans);
  --wrap: 1180px;
  --radius: 16px;
  --shadow: 0 22px 60px rgba(51, 61, 45, .12);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  margin: 0;
  letter-spacing: .3px
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  text-transform: uppercase;
  letter-spacing: 1px
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem)
}

h3 {
  font-size: 1.2rem
}

p {
  margin: 0 0 1rem
}

/* Bilingue — une seule langue affichée à la fois */
.ar {
  font-family: var(--ar);
  unicode-bidi: isolate
}

html:not(.is-ar) .only-ar {
  display: none !important
}

html.is-ar .only-fr {
  display: none !important
}

html.is-ar .ar {
  direction: rtl
}

/* Sélecteur de langue */
.lang-switch {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper)
}

.lang-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  padding: .42rem .7rem;
  color: var(--ink-soft);
  line-height: 1;
  transition: background .15s, color .15s;
}

.lang-btn[data-lang="ar"] {
  font-family: var(--ar);
  font-size: .95rem
}

.lang-btn.active {
  background: var(--olive);
  color: #fff
}

/* Ajustements RTL globaux */
html.is-ar .hero-copy,
html.is-ar .about-copy {
  text-align: right
}

html.is-ar .hero-cta,
html.is-ar .cta-row {
  justify-content: flex-start
}

html.is-ar .check {
  flex-direction: row-reverse;
  text-align: right
}

html.is-ar .why {
  flex-direction: row-reverse;
  text-align: right
}

html.is-ar .fitem {
  flex-direction: row-reverse;
  text-align: right
}

html.is-ar .faq summary {
  padding: 20px 0 20px 40px
}

html.is-ar .faq summary::after {
  right: auto;
  left: 4px
}

html.is-ar .approach-item {
  text-align: right
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 26px
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

.section {
  padding: 100px 0
}

.section--cream {
  background: var(--cream)
}

.section--cream2 {
  background: var(--cream-2)
}

.center {
  text-align: center
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px
}

/* Sous-titre centré : centrer aussi le bloc (pas seulement le texte) */
.lead.center,
.head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.leaf {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: var(--gold);
  vertical-align: middle
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s, color .18s;
}

.btn:hover {
  transform: translateY(-2px)
}


.btn--main {
  color: #fff !important;
}

.btn--olive {
  background: var(--olive);
  color: #fff;
}

.btn--olive:hover {
  background: var(--olive-deep)
}

.btn--gold {
  background: var(--gold);
  color: #fff
}

.btn--gold:hover {
  background: var(--gold-deep)
}

.btn--wa {
  background: var(--wa);
  color: #fff
}

.btn--wa:hover {
  background: var(--wa-dark)
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink)
}

.btn--ghost:hover {
  background: var(--ink);
  color: #fff
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6)
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--olive)
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px
}

/* Verrouillage logo : emblème + DERMALMO en ligne, sous-titre en dessous */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
  color: var(--olive);
}

.brand-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-emblem {
  display: inline-flex;
  width: 50px;
  height: 50px;
  color: var(--olive);
  flex: none;
}

.brand-emblem img,
.brand-emblem-svg {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--olive);
}

.brand-sub {
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}

html.is-ar .brand {
  align-items: flex-end;
}

@media(max-width:600px) {

  .brand-emblem,
  .brand-emblem img,
  .brand-emblem-svg {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .brand-sub {
    font-size: .48rem;
    letter-spacing: .16em;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .15s
}

.nav a:hover {
  color: var(--olive)
}

.nav .btn {
  padding: .6rem 1.15rem;
  text-transform: none
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--olive)
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--paper), var(--cream));
  overflow: hidden
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 90px 26px 100px
}

.hero h1 {
  color: var(--olive);
  margin-bottom: .4rem
}

.hero .h1-ar {
  font-family: var(--ar);
  direction: rtl;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.4rem;
  display: block
}

.hero .lead {
  margin-bottom: .6rem
}

.hero .lead-ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: radial-gradient(120% 120% at 25% 12%, rgba(184, 155, 99, .30), transparent 55%),
    linear-gradient(160deg, #e7e0cf 0%, #cdd0bb 48%, #9aa284 100%);
}

.hero-visual::after {
  content: "DERMALMO";
  position: absolute;
  inset: auto 0 28px;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, .9);
}

.hero-chip {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(63, 74, 56, .9);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero-chip .leaf {
  color: var(--gold);
  width: 20px;
  height: 20px;
  margin: 0 auto 4px
}

.hero-chip .fr {
  font-family: var(--serif);
  font-size: .92rem;
  line-height: 1.15
}

.hero-chip .ar {
  font-family: var(--ar);
  direction: rtl;
  font-size: .72rem;
  color: #e7dcc4;
  margin-top: 4px
}

/* ---------- Section heading ---------- */
.head {
  max-width: 760px;
  margin: 0 auto 60px
}

.head.center {
  text-align: center
}

.head .rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0
}

.title-bi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.title-bi .ar {
  font-family: var(--ar);
  color: var(--gold-deep);
  font-weight: 600
}

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 26px
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

/* Carte avec photo (préoccupations ciblées) */
.card--photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}

.card-body {
  padding: 24px 26px 28px;
}

.card--photo h3 {
  color: var(--olive);
  margin-bottom: .4rem;
}

.card--photo p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
}

html.is-ar .card--photo {
  text-align: right;
}

.card .ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  background: var(--cream);
  color: var(--olive);
  border: 1px solid var(--line);
}

.card .ico svg {
  width: 30px;
  height: 30px
}

.card h3 {
  color: var(--olive);
  margin-bottom: .25rem
}

.card .h3-ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--gold-deep);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .7rem
}

.card p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0
}

/* ---------- Approche (olive band) ---------- */
.approach {
  background: var(--olive);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 48px
}

.approach h2 {
  color: #fff
}

.approach .title-bi .ar {
  color: var(--gold)
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 40px
}

.approach-item {
  display: flex;
  flex-direction: column;
  gap: .35rem
}

.approach-item .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold)
}

.approach-item .fr {
  font-weight: 600
}

.approach-item .ar {
  font-family: var(--ar);
  direction: rtl;
  color: #d8cfb8;
  font-size: .9rem
}

/* ---------- Process / consultation ---------- */
.process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center
}

.consult-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow)
}

.consult-card .tag {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 22px;
}

.check {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line)
}

.check:last-child {
  border-bottom: 0
}

.check .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none
}

.check .tick svg {
  width: 15px;
  height: 15px
}

.check .fr {
  font-weight: 600;
  display: block
}

.check .ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--ink-soft);
  font-size: .9rem
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 30px
}

.pillar .ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  margin-bottom: 12px
}

.pillar .ico svg {
  width: 24px;
  height: 24px
}

.pillar .fr {
  font-weight: 600;
  color: var(--olive)
}

.pillar .ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--ink-soft);
  font-size: .85rem
}

.pillar p {
  margin: .2rem 0 0
}

/* ---------- Technologies ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px
}

.tech {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s
}

.tech:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.tech .pic {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #eee7d7, #c9cdb6);
  color: var(--olive)
}

.tech .pic svg {
  width: 56px;
  height: 56px;
  opacity: .85
}

.tech .body {
  padding: 22px 20px;
  text-align: center
}

.tech h3 {
  color: var(--olive);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.05rem
}

.tech .fr {
  color: var(--ink-soft);
  font-size: .9rem;
  margin: .35rem 0 .3rem
}

.tech .ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--gold-deep);
  font-size: .85rem
}

/* ---------- Quote band ---------- */
.quote {
  background: var(--olive);
  color: #fff;
  text-align: center;
  padding: 80px 0
}

.quote .fr {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  line-height: 1.2
}

.quote .ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--gold);
  font-size: 1.35rem;
  margin-top: 14px
}

/* ---------- CTA ---------- */
.cta {
  background: var(--cream);
  text-align: center;
  padding: 90px 0
}

.cta h2 {
  color: var(--olive)
}

.cta .ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--gold-deep);
  font-size: 1.5rem;
  margin: .4rem 0 1.4rem
}

.cta .row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--olive-deep);
  color: #d6cfbd;
  padding: 64px 0 30px;
  font-size: .92rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px
}

.site-footer .brand .name {
  color: #fff
}

.site-footer .brand .sub {
  color: var(--gold)
}

.site-footer h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--sage-soft);
  margin: 0 0 1rem
}

.site-footer .fitem {
  display: flex;
  gap: 10px;
  margin-bottom: .7rem;
  align-items: flex-start
}

.site-footer .fitem svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 3px
}

.site-footer a:hover {
  color: #fff
}

/* Carte Google Maps (pied de page) */
.footer-map {
  margin: 8px 0 40px;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  border-radius: var(--radius);
  filter: grayscale(.2);
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 600;
  font-size: .92rem;
}

.footer-map-link:hover {
  color: #fff;
}

.footer-map-link svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.footer-tag {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  text-align: center
}

.footer-tag .fr {
  font-family: var(--serif);
  font-style: italic;
  color: #fff;
  font-size: 1.1rem
}

.footer-tag .ar {
  font-family: var(--ar);
  direction: rtl;
  color: var(--sage-soft);
  font-size: .95rem;
  margin-top: 6px
}

.footer-copy {
  text-align: center;
  color: #8f8a78;
  font-size: .78rem;
  margin-top: 18px
}

/* ---------- À propos ---------- */
.about {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center
}

.about-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: radial-gradient(120% 120% at 80% 15%, rgba(184, 155, 99, .28), transparent 55%),
    linear-gradient(150deg, #e7e0cf, #b9be9f 60%, #8a9270);
}

/* --- Variantes photo (comparaison zone de bienvenue) --- */
.media-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero--embed {
  background: none;
  padding: 0;
}

.hero--embed .wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-visual--photo {
  background: none;
}

.hero-visual--photo::after {
  display: none;
}

.about--photo {
  margin-top: 48px;
}

.about-media--photo {
  position: relative;
  overflow: hidden;
  background: none;
}

.about-copy h2 {
  color: var(--olive);
  margin-bottom: 1rem
}

.stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap
}

.stat {
  display: flex;
  flex-direction: column
}

.stat .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1
}

.stat .only-fr,
.stat .only-ar {
  font-size: .86rem;
  color: var(--ink-soft);
  max-width: 150px;
  margin-top: 4px
}

/* ai-desc pour l'approche */
.approach-item .ai-fr,
.approach-item .ai-ar {
  font-weight: 600
}

.approach-item .ai-desc {
  color: #d8cfb8;
  font-size: .88rem;
  font-weight: 400
}

/* ---------- Technologies (détails) ---------- */
.tech .tsub {
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  margin: .35rem 0 .4rem
}

.tech .tdesc {
  color: var(--ink-soft);
  font-size: .85rem;
  margin: 0
}

/* ---------- Nos soins (problème → soin → résultats) ---------- */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.soin {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s
}

.soin:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.soin-media {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  color: var(--olive);
  background: radial-gradient(120% 120% at 75% 15%, rgba(184, 155, 99, .22), transparent 55%), linear-gradient(150deg, #e9e2d1, #c3c7ab)
}

.soin-media svg {
  width: 52px;
  height: 52px;
  opacity: .85
}

/* Variante avec icônes PNG (Flaticon) : badge rond crème + icône centrée */
.soin--img .soin-media {
  aspect-ratio: 16/9;
  background: linear-gradient(150deg, #f3eee2, #e6e3d2);
}

.soin--img .soin-media img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(51, 61, 45, .08);
}

.soin-body {
  padding: 26px 24px
}

.soin-body h3 {
  color: var(--olive);
  margin-bottom: 14px;
  font-size: 1.3rem
}

.soin-line {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0 0 12px;
  line-height: 1.5
}

.soin-line:last-child {
  margin-bottom: 0
}

.soin-lbl {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .66rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 3px
}

.soin-results .soin-lbl {
  color: var(--sage)
}

.soin-results {
  color: var(--ink)
}

.soins-note {
  max-width: 640px;
  margin: 44px auto 0;
  color: var(--ink-soft);
  font-size: .95rem
}

html.is-ar .soin-lbl {
  text-align: right
}

html.is-ar .soin-body {
  text-align: right
}

/* ---------- Pourquoi nous ---------- */
.why-grid {
  gap: 28px
}

.why {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px
}

.why .ico {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive);
  display: grid;
  place-items: center;
  border: 1px solid var(--line)
}

.why .ico svg {
  width: 26px;
  height: 26px
}

.why h3 {
  color: var(--olive);
  margin-bottom: .35rem
}

.why p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--olive);
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .2s
}

.faq details[open] summary::after {
  content: "–"
}

.faq details p {
  color: var(--ink-soft);
  padding: 0 0 20px
}

/* ---------- CTA ---------- */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem
}

.booking-fallback {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft)
}

/* ---------- Footer brand ---------- */
.brand-foot .name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  display: block
}

.brand-foot .sub {
  display: block;
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 3px;
  color: var(--gold)
}

.site-footer a {
  color: #d6cfbd;
  display: block;
  margin-bottom: .6rem;
  transition: color .15s
}

.site-footer .fitem a {
  display: inline;
  margin: 0
}

/* ---------- Logo image (si déposé) ---------- */
.brand--img {
  gap: 0
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block
}

.brand-foot-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95
}

/* ---------- Ce que nous traitons (pastilles) ---------- */
.concern-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto
}

.concern-pill {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .7rem 1.3rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .15s, color .15s, transform .15s, border-color .15s;
}

.concern-pill:hover {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
  transform: translateY(-2px)
}

/* ---------- Témoignages ---------- */
.avis-grid {
  margin-top: 8px
}

.avis {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.avis-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px
}

.avis-text {
  color: var(--ink);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0
}

.avis-name {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--olive);
  margin: auto 0 0
}

.avis-note {
  margin-top: 40px
}

.avis-ig {
  color: var(--gold-deep);
  font-weight: 600
}

.avis-ig:hover {
  color: var(--olive)
}

/* ---------- WhatsApp flottant ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wa);
  color: #fff;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transition: transform .18s ease, background .18s;
}

.wa-float:hover {
  transform: translateY(-3px);
  background: var(--wa-dark)
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex: none
}

html.is-ar .wa-float {
  right: auto;
  left: 22px
}

@media(max-width:600px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: .8rem
  }

  html.is-ar .wa-float {
    left: 16px;
    right: auto
  }

  .wa-float-txt {
    display: none
  }
}

/* ---------- Responsive ---------- */
@media(max-width:960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 26px 72px
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto
  }

  .grid-3,
  .tech-grid,
  .soins-grid {
    grid-template-columns: 1fr 1fr
  }

  .approach-grid {
    grid-template-columns: 1fr 1fr
  }

  .process,
  .about {
    grid-template-columns: 1fr
  }

  .about-media {
    max-width: 460px;
    margin: 0 auto
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .section {
    padding: 64px 0
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 26px;
    gap: 1rem;
    transform: translateY(-150%);
    transition: transform .25s ease;
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0)
  }

  .nav-toggle {
    display: block
  }

  .grid-3,
  .grid-2,
  .tech-grid,
  .soins-grid,
  .approach-grid,
  .pillars,
  .why-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .approach {
    padding: 40px 26px
  }

  .lang-switch {
    align-self: flex-start
  }

  .stats {
    gap: 20px
  }
}