/* ═══════════════════════════════════════
   AYUBOWAN — MASSAGES DU MONDE
   style.css
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:      #F4F7FC;
  --bg2:     #EBF0F9;
  --bg3:     #DDE6F4;
  --accent:  #2A5FC4;
  --accent2: #4A7FE8;
  --ink:     #0D1B3E;
  --muted:   rgba(13,27,62,0.42);
  --faint:   rgba(13,27,62,0.07);
  --dp:      'DM Serif Display', serif;
  --db:      'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--db); font-weight: 300; background: var(--bg); color: var(--ink); overflow-x: hidden; }

/* ── CURSEUR ── */



/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 36px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s, background .4s, box-shadow .4s;
}
nav.scrolled {
  padding: 18px 64px;
  background: rgba(244,247,252,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--faint);
}
.nav-logo-img { height: 36px; width: auto; display: inline-block; vertical-align: middle; margin-right: 10px; }
.nav-logo { font-family: var(--dp); font-size: 1.1rem; font-weight: 400; letter-spacing: .12em; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; }
.nav-logo span { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 48px; list-style: none; }
.nav-menu a { font-size: .65rem; font-weight: 400; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .3s; }
.nav-menu a:hover { color: var(--ink); }
.nav-book { font-size: .65rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 12px 32px; text-decoration: none; transition: background .3s; border-radius: 6px; }
.nav-book:hover { background: var(--ink); }

/* ── PRÉSENTATION + GALERIE ── */
.pres-section { padding: 160px 64px 0; background: var(--bg); overflow: hidden; }
.pres-content { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-bottom: 80px; }
.pres-h1 { font-family: var(--dp); font-size: clamp(3rem,5.5vw,6.5rem); font-weight: 700; line-height: .95; letter-spacing: -.02em; color: var(--ink); margin: 24px 0 36px; }
.pres-h1 em { font-style: italic; font-weight: 400; color: var(--accent); display: block; }
.pres-desc { font-size: .95rem; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.pres-meta { font-size: .78rem; color: var(--muted); margin-top: 32px; line-height: 2; }
.pres-hero-img { width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; background: var(--bg3); }
.pres-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pres-carousel-wrap { width: 100vw; margin-left: -64px; overflow: hidden; position: relative; }
.pres-carousel-wrap::before, .pres-carousel-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.pres-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.pres-carousel-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.pres-carousel { display: flex; gap: 16px; animation: carouselScroll 28s linear infinite; width: max-content; padding: 0 64px; }
.pres-carousel:hover { animation-play-state: paused; }
.pres-slide { flex-shrink: 0; width: 340px; height: 420px; border-radius: 16px; overflow: hidden; background: var(--bg3); }
.pres-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.pres-slide:hover img { transform: scale(1.04); }
@keyframes carouselScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-1780px)); } }

/* ── BOUTONS ── */
.btn { display: inline-flex; align-items: center; gap: 16px; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: #fff; background: var(--accent); padding: 18px 44px; text-decoration: none; transition: all .35s; white-space: nowrap; border-radius: 6px; }
.btn:hover { background: var(--ink); gap: 24px; color: #fff; }
.btn-ghost { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: color .3s; }
.btn-ghost:hover { color: var(--ink); }

/* ── PHILOSOPHIE ── */
.philo { padding: 160px 64px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 120px; align-items: center; max-width: 1440px; margin: 0 auto; }
.philo-img { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; clip-path: polygon(20px 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%,0 20px); background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: .52rem; letter-spacing: .3em; color: rgba(42,95,196,.3); }
.philo-img img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.philo-badge { position: absolute; bottom: -28px; right: -28px; width: 120px; height: 120px; background: var(--accent); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.philo-badge-n { font-family: var(--dp); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.philo-badge-t { font-size: .5rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); text-align: center; }

/* ── LABELS / TITRES ── */
.label { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.label-line { width: 28px; height: 1px; background: var(--accent); flex-shrink: 0; }
.label span { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); }
.title { font-family: var(--dp); font-size: clamp(2.4rem,4vw,4rem); font-weight: 700; line-height: 1.05; color: var(--ink); margin-bottom: 36px; letter-spacing: -.01em; }
.title em { font-style: italic; font-weight: 400; color: var(--accent); }
.txt { font-size: .95rem; line-height: 1.9; color: var(--muted); margin-bottom: 20px; }
.rule { width: 100%; height: 1px; background: var(--faint); margin: 36px 0; display: block; }
.quote { font-family: var(--dp); font-size: 1.4rem; font-style: italic; color: var(--accent); line-height: 1.5; padding-left: 24px; border-left: 2px solid var(--accent); margin: 0; display: block; }

/* ── SOINS ── */
.soins { padding: 160px 64px; background: var(--bg2); position: relative; overflow: hidden; }
.soins-ghost { position: absolute; top: 50%; left: -2vw; transform: translateY(-50%) rotate(-6deg); font-family: var(--dp); font-size: 22vw; font-weight: 900; color: rgba(42,95,196,.04); pointer-events: none; white-space: nowrap; line-height: 1; user-select: none; }
.soins-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 100px; position: relative; z-index: 1; }
.soins-title { font-family: var(--dp); font-size: clamp(3rem,5vw,5.5rem); font-weight: 700; line-height: .95; letter-spacing: -.02em; color: var(--ink); }
.soins-title em { display: block; font-style: italic; font-weight: 400; color: var(--accent); }
.soins-intro { font-size: .95rem; line-height: 1.85; color: var(--muted); }
.universe { position: relative; z-index: 1; margin-bottom: 80px; }
.universe-label { font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; color: var(--accent); margin-bottom: 32px; display: flex; align-items: center; gap: 20px; }
.universe-label::after { content: ''; flex: 1; height: 1px; background: var(--faint); }
.grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.card { background: #fff; padding: 44px 36px; transition: background .35s, box-shadow .35s, transform .35s; position: relative; overflow: hidden; cursor: pointer; border-radius: 12px; }
.card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.card:hover { background: #fff; box-shadow: 0 20px 60px rgba(42,95,196,.12); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }
.card-n { font-family: var(--dp); font-size: .8rem; color: rgba(42,95,196,.3); margin-bottom: 20px; display: block; }
.card-name { font-family: var(--dp); font-size: 1.3rem; font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.25; transition: color .3s; display: block; }
.card:hover .card-name { color: var(--accent); }
.card-desc { font-size: .8rem; line-height: 1.7; color: rgba(13,27,62,.38); transition: color .3s; }
.card:hover .card-desc { color: var(--muted); }
.card-arr { position: absolute; bottom: 28px; right: 28px; font-size: .8rem; color: var(--accent); opacity: 0; transform: translateX(-8px); transition: all .35s; }
.card:hover .card-arr { opacity: 1; transform: translateX(0); }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint); background: var(--bg); }
.stat { padding: 60px 40px; border-right: 1px solid var(--faint); transition: background .3s; }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg2); }
.stat-n { font-family: var(--dp); font-size: 4rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; display: block; }
.stat-l { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); line-height: 1.6; }

/* ── CTA ── */
.cta { padding: 200px 64px; text-align: center; position: relative; overflow: hidden; background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(74,127,232,.13), transparent 65%), var(--bg); }
.cta-r1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(42,95,196,.08); }
.cta-r2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(42,95,196,.05); }
.cta-in { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-over { font-size: .62rem; letter-spacing: .35em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.cta-line { width: 40px; height: 1px; background: var(--accent); display: block; }
.cta-h { font-family: var(--dp); font-size: clamp(3rem,6vw,6.5rem); font-weight: 900; line-height: .92; color: var(--ink); margin-bottom: 48px; }
.cta-h em { font-style: italic; font-weight: 400; color: var(--accent); }
.cta-sub { font-size: 1rem; line-height: 1.85; color: var(--muted); margin-bottom: 64px; }
.cta-btns { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-addr { margin-top: 40px; font-size: .72rem; color: var(--muted); letter-spacing: .1em; display: block; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 100px 64px 0; }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.ft-logo { font-family: var(--dp); font-size: 1.6rem; font-weight: 700; color: #fff; display: block; margin-bottom: 6px; text-decoration: none; }
.ft-logo span { color: var(--accent2); }
.ft-tag { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 32px; display: block; }
.ft-addr { font-size: .88rem; line-height: 1.9; color: rgba(255,255,255,.4); }
.ft-col-t { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent2); margin-bottom: 28px; display: block; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ft-links a { font-size: .85rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .3s; }
.ft-links a:hover { color: rgba(255,255,255,.85); }
.ft-bot { border-top: 1px solid rgba(255,255,255,.05); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; }
.ft-social { display: flex; gap: 12px; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.05); }
.ft-social-btn { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .35s, color .35s, transform .35s, box-shadow .35s; }
.ft-social-btn:hover { transform: translateY(-3px); }
.ft-social-btn.fb { }
.ft-social-btn.fb:hover { background: #1877F2; color: #fff; box-shadow: 0 8px 24px rgba(24,119,242,.4); }
.ft-social-btn.ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; box-shadow: 0 8px 24px rgba(220,39,67,.4); }
.ft-bot p { font-size: .62rem; letter-spacing: .12em; color: rgba(255,255,255,.15); }
.ft-bot a { font-size: .62rem; letter-spacing: .12em; color: rgba(255,255,255,.15); text-decoration: none; margin-left: 32px; transition: color .3s; }
.ft-bot a:hover { color: rgba(255,255,255,.45); }

/* ── REVEAL AU SCROLL ── */
.rev { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s ease; }
.rev.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 600; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { display: none; position: fixed; inset: 0; background: rgba(244,247,252,.97); backdrop-filter: blur(20px); z-index: 550; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: 1.4rem; font-family: var(--dp); color: var(--ink); text-decoration: none; letter-spacing: .04em; transition: color .3s; }
.nav-drawer a:hover { color: var(--accent); }
.nav-drawer .nav-drawer-tel { font-size: 1rem; color: var(--accent); margin-top: 16px; font-family: var(--db); letter-spacing: .08em; }

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  nav, nav.scrolled { padding: 24px 32px; }
  .pres-section { padding: 120px 32px 0; }
  .pres-content { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .pres-carousel-wrap { margin-left: -32px; }
  .philo { grid-template-columns: 1fr; padding: 100px 32px; gap: 60px; }
  .soins { padding: 100px 32px; }
  .soins-header { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .cta { padding: 120px 32px; }
  footer { padding: 80px 32px 0; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-bot { flex-direction: column; gap: 16px; text-align: center; }
  .nav-menu { display: none; }
  .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .tarifs-section { padding: 80px 32px; }
  .tarifs-tables { grid-template-columns: 1fr; }
  .cadeau-section { padding: 80px 32px; }
  .cadeau-inner { grid-template-columns: 1fr; gap: 60px; }
}
@media(max-width:700px){
  .pres-h1 { font-size: 2.6rem; }
  .pres-actions { flex-direction: column; align-items: flex-start; }
  .pres-carousel-wrap { margin-left: -20px; }
  .pres-slide { width: 240px; height: 300px; }
  .grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--faint); }
  .stat:last-child { border-bottom: none; }
  .cta { padding: 80px 20px; }
  .cta-in { max-width: 100%; }
  .cta-map { height: 240px; }
}
@media(max-width:480px){
  nav, nav.scrolled { padding: 16px 20px; }
  .pres-section { padding: 100px 16px 0; }
  .pres-carousel-wrap { margin-left: -16px; }
  .soins { padding: 72px 20px; }
  .soins-title { font-size: 2.6rem; }
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 32px 24px; }
  .philo { padding: 72px 20px; gap: 48px; }
  .title { font-size: 2rem; }
  .tarifs-section { padding: 72px 20px; }
  .cadeau-section { padding: 72px 20px; }
  footer { padding: 60px 20px 0; }
  .ft-grid { grid-template-columns: 1fr; gap: 40px; }
  .ft-links { gap: 10px; }
  .stat { padding: 40px 20px; }
  .stat-n { font-size: 3rem; }
}

/* ── TARIFS ── */
.tarifs-section { background: var(--bg); padding: 120px 64px; }
.tarifs-inner { max-width: 1440px; margin: 0 auto; }
.tarifs-hd { margin-bottom: 80px; }
.tarifs-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tarifs-col-title { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.tarifs-col-title::after { content: ''; flex: 1; height: 1px; background: var(--faint); }
.tarifs-table { width: 100%; border-collapse: collapse; }
.tarifs-table thead tr { border-bottom: 2px solid var(--accent); }
.tarifs-table th { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); padding: 0 16px 16px 0; text-align: left; font-weight: 400; }
.tarifs-table th:last-child { text-align: right; }
.tarifs-table tbody tr { border-bottom: 1px solid var(--faint); transition: background .2s; }
.tarifs-table tbody tr:hover { background: var(--bg2); }
.tarifs-table td { padding: 16px 16px 16px 0; font-size: .9rem; color: var(--ink); }
.tarifs-table td:first-child { font-family: var(--dp); font-size: .95rem; }
.tarifs-table td:nth-child(2) { color: var(--muted); font-size: .82rem; }
.tarifs-table td:last-child { text-align: right; font-weight: 500; color: var(--accent); white-space: nowrap; }
.tarifs-note { margin-top: 24px; font-size: .72rem; line-height: 1.7; color: rgba(31,45,36,.3); font-style: italic; border-left: 2px solid var(--faint); padding-left: 16px; }

.cta-map { margin-top: 56px; width: 100%; height: 360px; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(42,95,196,.15); position: relative; z-index: 1; }
.cta-map iframe { display: block; width: 100%; height: 100%; }

.cta-social { margin-top: 48px; position: relative; z-index: 1; }
.cta-social-label { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.cta-social-label::before, .cta-social-label::after { content: ''; flex: 0 0 48px; height: 1px; background: rgba(42,95,196,.25); }
.cta-social-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-social-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 32px; border: 1px solid rgba(42,95,196,.25); border-radius: 8px; color: var(--muted); text-decoration: none; font-size: .78rem; letter-spacing: .12em; transition: all .35s; background: rgba(42,95,196,.04); }
.cta-social-btn:hover { transform: translateY(-3px); }
.cta-social-btn.fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; box-shadow: 0 8px 24px rgba(24,119,242,.35); }
.cta-social-btn.ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: transparent; box-shadow: 0 8px 24px rgba(220,39,67,.35); }

@media(max-width:700px) { .cta-map { height: 240px; } .cta-social-btn { padding: 12px 24px; } }

/* ── AVIS GOOGLE ── */
.avis-section { background: var(--bg2); padding: 120px 64px; overflow: hidden; box-sizing: border-box; width: 100%; }
.avis-inner { max-width: 1440px; margin: 0 auto; width: 100%; }
.avis-header { margin-bottom: 64px; }
.avis-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.avis-header-row .title { margin-bottom: 0; }
.avis-score-block { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.avis-score-n { font-family: var(--dp); font-size: 4rem; font-weight: 700; color: var(--accent); line-height: 1; }
.avis-stars { color: #F4B942; font-size: 1.1rem; display: block; letter-spacing: 2px; }
.avis-score-label { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 4px; }
.avis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 48px; }
.avis-card { background: #fff; border-radius: 16px; padding: 36px; display: flex; flex-direction: column; gap: 20px; transition: box-shadow .35s, transform .35s; min-width: 0; }
.avis-card:hover { box-shadow: 0 20px 60px rgba(42,95,196,.1); transform: translateY(-4px); }
.avis-skeleton { min-height: 220px; background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.avis-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.avis-stars-sm { color: #F4B942; font-size: .95rem; letter-spacing: 1px; flex-shrink: 0; }
.avis-date { font-size: .62rem; letter-spacing: .12em; color: var(--muted); }
.avis-txt { font-size: .9rem; line-height: 1.85; color: var(--muted); font-style: italic; flex: 1; }
.avis-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avis-author-init { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--dp); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avis-author-photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.avis-author-name { font-size: .85rem; font-weight: 500; color: var(--ink); display: block; }
.avis-author-via { font-size: .62rem; letter-spacing: .15em; color: var(--muted); display: block; margin-top: 2px; }
.avis-glink { margin-left: auto; font-size: .75rem; color: var(--accent); text-decoration: none; opacity: .5; transition: opacity .3s; }
.avis-glink:hover { opacity: 1; }
.avis-cta { text-align: center; }
@media(max-width:1100px) {
  .avis-section { padding: 80px 32px; }
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .avis-header-row { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media(max-width:700px) {
  .avis-section { padding: 60px 20px; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-card { padding: 24px 20px; word-break: break-word; }
  .avis-txt { font-size: .85rem; }
}
@media(max-width:480px) {
  .avis-section { padding: 48px 16px; }
}

/* ── FOOTER ── */
.cadeau-section { background: var(--bg2); padding: 120px 64px; }
.cadeau-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }
.cadeau-photo { position: relative; }
.cadeau-photo-placeholder { width: 100%; aspect-ratio: 4/5; background: var(--bg3); clip-path: polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,20px 100%,0 calc(100% - 20px)); display: flex; align-items: center; justify-content: center; font-size: .52rem; letter-spacing: .3em; color: rgba(42,95,196,.3); text-transform: uppercase; }
.cadeau-photo img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; clip-path: polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,20px 100%,0 calc(100% - 20px)); }
.cadeau-badge-gift { position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.cadeau-btns { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 40px; }

@media(max-width:1100px) {
  .tarifs-section { padding: 80px 32px; }
  .tarifs-tables { grid-template-columns: 1fr; }
  .cadeau-section { padding: 80px 32px; }
  .cadeau-inner { grid-template-columns: 1fr; gap: 60px; }
}
