/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #1B5260;
  --primary-dark:   #133D4A;
  --primary-light:  #2C7A8C;
  --accent:         #D4831A;
  --accent-dark:    #B36A0E;
  --accent-light:   #F5A942;
  --bg:             #FFFFFF;
  --bg-alt:         #F4F8F7;
  --bg-dark:        #0F2E38;
  --text:           #1A2728;
  --text-muted:     #5A7078;
  --border:         #DDE8E6;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 8px rgba(27,82,96,0.08);
  --shadow-md:      0 8px 32px rgba(27,82,96,0.12);
  --shadow-lg:      0 16px 48px rgba(27,82,96,0.16);
  --transition:     0.25s ease;
  --max-width:      1160px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.stars      { color: #F0A500; font-size: 15px; letter-spacing: 2px; }
.stars-sm   { color: #F0A500; font-size: 13px; letter-spacing: 1px; }
.stars-lg   { color: #F0A500; font-size: 28px; letter-spacing: 3px; }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-xl  { padding: 18px 38px; font-size: 17px; border-radius: 10px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,131,26,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,131,26,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-dark);
}

.header-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.header-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}

.header-nav a:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.header-cta { margin-left: 8px; }

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.header-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.mobile-nav a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-nav .btn {
  margin-top: 12px;
  justify-content: center;
  width: 100%;
}

.mobile-nav.open { display: flex; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #EAF4F6 0%, #F4F8F7 50%, #FEF9F2 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-title-sub {
  color: var(--primary-light);
  font-style: italic;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 28px 28px 120px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-dark);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg { color: var(--accent-light); flex-shrink: 0; }
.trust-item strong { color: #fff; }
.trust-item .stars-sm { color: #F0A500; }

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ════════════════════════════════════════════
   SOINS
════════════════════════════════════════════ */
.soins {
  padding: 96px 0;
  background: var(--bg);
}

.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.soin-card {
  padding: 32px 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.soin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.soin-icon {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.soin-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.soin-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.soin-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.techniques-note {
  margin-top: 48px;
  text-align: center;
  padding: 20px 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
}

.techniques-note strong {
  color: var(--primary);
}

/* ════════════════════════════════════════════
   À PROPOS
════════════════════════════════════════════ */
.propos {
  padding: 96px 0;
  background: var(--bg-alt);
}

.propos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.propos-image {
  position: relative;
}

.propos-image-wrap {
  border-radius: 24px 24px 100px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.propos-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.propos-image-cabinet {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.propos-image-cabinet img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.propos-content { padding-right: 8px; }

.propos-bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.propos-bio strong { color: var(--text); }

.propos-badges {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.badge svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process {
  padding: 96px 0;
  background: var(--bg-dark);
  color: #fff;
}

.process .section-label { color: var(--accent-light); }
.process .section-title { color: #fff; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}

.process-arrow {
  font-size: 28px;
  color: rgba(255,255,255,0.25);
  padding-top: 48px;
  align-self: start;
}

.process-step {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}

.process-step:hover {
  background: rgba(255,255,255,0.08);
}

.process-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255,255,255,0.12);
}

.process-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-light);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.process-step strong { color: rgba(255,255,255,0.9); }

.process-cta {
  text-align: center;
  margin-top: 52px;
}

/* ════════════════════════════════════════════
   GALERIE CABINET
════════════════════════════════════════════ */
.cabinet-gallery {
  padding: 96px 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-secondary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-secondary img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════
   AVIS — Google-style reviews
════════════════════════════════════════════ */
.avis {
  padding: 96px 0;
  background: var(--bg-alt);
}

/* ── Bloc résumé ── */
.avis-summary-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 460px;
}

.asb-left {
  text-align: center;
  flex-shrink: 0;
}

.asb-big {
  font-size: 52px;
  font-weight: 400;
  color: #202124;
  line-height: 1;
  letter-spacing: -1px;
}

.asb-stars {
  color: #FBBC04;
  font-size: 20px;
  letter-spacing: 2px;
  margin: 8px 0 4px;
}

.asb-count {
  font-size: 13px;
  color: #70757a;
  white-space: nowrap;
}

.asb-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.asb-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #70757a;
}

.asb-label {
  width: 8px;
  text-align: right;
  flex-shrink: 0;
}

.asb-bar {
  flex: 1;
  height: 8px;
  background: #e8eaed;
  border-radius: 4px;
  overflow: hidden;
}

.asb-fill {
  height: 100%;
  background: #FBBC04;
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* ── Filtres et tri ── */
.avis-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.avis-filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.afb {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  color: var(--text);
  transition: all var(--transition);
  font-family: inherit;
  line-height: 1;
}

.afb:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.afb.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.avis-sort-select {
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A7078' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition);
}

.avis-sort-select:hover, .avis-sort-select:focus {
  border-color: var(--primary);
}

/* ── Grille ── */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* ── Carte Google-style ── */
.gc-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(60,64,67,.15), 0 1px 3px 1px rgba(60,64,67,.08);
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition);
}

.gc-card:hover {
  box-shadow: 0 2px 6px rgba(60,64,67,.2), 0 4px 12px 3px rgba(60,64,67,.1);
}

.gc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}

.gc-meta {
  flex: 1;
  min-width: 0;
}

.gc-name {
  font-size: 14px;
  font-weight: 600;
  color: #202124;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.gc-stars {
  color: #FBBC04;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.gc-date {
  font-size: 12px;
  color: #70757a;
}

/* Logos source */
.gc-source {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.gc-logo-google {
  width: 18px;
  height: 18px;
}

.gc-source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.gc-source-badge.reflex {
  background: #2196F3;
}

/* Texte avis */
.gc-text {
  font-size: 14px;
  color: #3c4043;
  line-height: 1.65;
  flex: 1;
}

.gc-text-short { display: inline; }
.gc-text-full  { display: none; }

.gc-expand-btn {
  background: none;
  border: none;
  color: #1a73e8;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 2px;
}

.gc-expand-btn:hover { text-decoration: underline; }

/* Footer carte */
.gc-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #70757a;
  padding-top: 10px;
  border-top: 1px solid #f1f3f4;
  margin-top: auto;
}

.gc-source-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bdc1c6;
  flex-shrink: 0;
}

/* Aucun résultat */
.avis-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* ── Lien CTA ── */
.avis-cta-link {
  text-align: center;
  margin-top: 8px;
}

.avis-cta-link a {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
}

.avis-cta-link a:hover { color: var(--accent); }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--bg);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover { background: var(--bg-alt); color: var(--primary); }

.faq-question[aria-expanded="true"] {
  background: var(--bg-alt);
  color: var(--primary);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--bg-alt);
}

.faq-answer p { margin: 0; }
.faq-answer a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.faq-answer strong { color: var(--text); }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: var(--bg-alt);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-rdv {
  margin: 28px 0 36px;
}

.contact-rdv-meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.65;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong { color: var(--text); }
.contact-item a { color: var(--primary); font-weight: 600; }
.contact-item a:hover { color: var(--accent); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
  border: 1px solid var(--border);
}

.contact-map iframe { width: 100%; height: 100%; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  filter: invert(1) brightness(0.8);
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-name {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.footer-title-f {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.8;
}

.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: #fff; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-links a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  text-align: center;
  padding: 16px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════════
   STICKY CTA MOBILE
════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: var(--bg-dark);
  gap: 10px;
  justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sticky-cta .btn { flex: 1; justify-content: center; max-width: 200px; }

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-meta { text-align: center; }

  .soins-grid { grid-template-columns: repeat(2, 1fr); }

  .propos-inner { grid-template-columns: 1fr; gap: 40px; }
  .propos-image { max-width: 400px; margin: 0 auto; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-arrow { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-secondary { flex-direction: row; }
  .gallery-secondary img { height: 200px; }

  .avis-grid { grid-template-columns: 1fr 1fr; }
  .avis-summary-block { max-width: 100%; }
  .avis-controls { flex-direction: column; align-items: flex-start; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 320px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════ */
@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }

  .hero { padding: 48px 0 56px; }
  .hero-badge { font-size: 12px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section-header { margin-bottom: 36px; }
  .soins { padding: 64px 0; }
  .soins-grid { grid-template-columns: 1fr; gap: 12px; }

  .propos { padding: 64px 0; }
  .propos-image-cabinet { display: none; }

  .process { padding: 64px 0; }

  .cabinet-gallery { padding: 64px 0; }
  .gallery-secondary { flex-direction: column; }

  .avis { padding: 64px 0; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-summary-block { flex-direction: column; gap: 20px; padding: 24px; text-align: center; }
  .asb-right { width: 100%; }
  .avis-filter-btns { gap: 6px; }
  .afb { font-size: 12px; padding: 6px 12px; }
  .avis-sort-select { font-size: 12px; }

  .faq { padding: 64px 0; }

  .contact { padding: 64px 0; }

  .header-nav, .header-cta { display: none; }
  .header-burger { display: flex; }

  .trust-bar-inner { gap: 12px; }
  .trust-divider { display: none; }
  .trust-item { font-size: 13px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}
