/* ================================================
   CABINET DR. HACMOUN — Inspired by Beehive Dental
   Light / Warm Edition (cream · charcoal · champagne gold)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ---- VARIABLES ---- */
:root {
  /* Names kept for compatibility; values remapped to a warm light palette.
     "navy*" = warm charcoal (dark grounding blocks)
     "blue*" = champagne gold (accent) / warm beige (tints) */
  --navy:        #1a1714;   /* warm near-black charcoal */
  --navy-2:      #232019;   /* charcoal 2 */
  --navy-3:      #2c281f;   /* charcoal 3 */
  --blue:        #b8985f;   /* champagne gold (accent) */
  --blue-light:  #d3b97f;   /* light gold (on dark bg) */
  --blue-hover:  #9c7d47;   /* deep gold (hover) */
  --blue-pale:   #ece5d8;   /* warm beige */
  --blue-xpale:  #f4f0e7;   /* pale cream tint */
  --white:       #ffffff;
  --off-white:   #faf9f5;   /* warm cream */
  --text-dark:   #1a1714;
  --text-body:   #5c554b;   /* warm grey */
  --text-muted:  #9a9088;
  --border:      rgba(26,23,20,.12);
  --shadow:      0 6px 30px rgba(26,23,20,.10);
  --shadow-lg:   0 16px 60px rgba(26,23,20,.16);
  --shadow-card: 0 4px 20px rgba(26,23,20,.07);
  --radius:      3px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --transition:  .3s ease;
  --font:        'Poppins', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text-body); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--blue); color: var(--white); }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: .5px;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 500; }
p  { line-height: 1.8; font-weight: 300; }

/* ---- CONTAINER ---- */
.container       { max-width: 1380px; margin: 0 auto; padding: 0 5%; }
.container-sm    { max-width: 900px;  margin: 0 auto; padding: 0 5%; }

/* ---- EYEBROW ---- */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-blue {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,23,20,.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-blue {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline-blue:hover {
  background: var(--text-dark);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  transform: translateY(-2px);
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(26,23,20,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo-info { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-hover);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--blue-hover); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  margin-top: 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-text {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* ================================================
   WELCOME
   ================================================ */
.welcome {
  padding: 10vh 0;
  background: var(--white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text h2 { margin-bottom: 20px; }
.welcome-text p  { color: var(--text-body); margin-bottom: 16px; font-size: .95rem; }
.welcome-text .btn { margin-top: 16px; }

.welcome-visual {
  position: relative;
}
.welcome-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e7ddca 0%, #d3c6ac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.welcome-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(184,152,95,.28) 0%, transparent 60%);
}
.welcome-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.wb-num {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.wb-label {
  font-size: .72rem;
  font-weight: 400;
  opacity: .85;
  margin-top: 4px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  padding: 10vh 0;
  background: var(--off-white);
}
.section-header {
  margin-bottom: 50px;
}
.section-header.center { text-align: center; }
.section-header.center p { max-width: 560px; margin: 12px auto 0; }
.section-header p { color: var(--text-body); font-size: .95rem; margin-top: 12px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.testi-stars {
  color: var(--blue);
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: .9rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.testi-detail { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

/* Bloc "Laisser un avis Google" */
.google-reviews-cta { text-align: center; margin-top: 46px; }
.google-reviews-cta > p { font-size: .95rem; color: var(--text-body); margin-bottom: 18px; }
.gr-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-google {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(26,23,20,.06);
}
.btn-google:hover {
  border-color: var(--blue);
  color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,23,20,.12);
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 10vh 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 300px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.sci-1 { background: linear-gradient(160deg, #e9e0cd, #d2c4a8); }
.sci-2 { background: linear-gradient(160deg, #ece4d3, #d8c9ab); }
.sci-3 { background: linear-gradient(160deg, #e6dcc7, #cdbd9d); }
.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,.18) 0%, transparent 50%);
}
.service-card-body {
  padding: 28px;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card-body p { font-size: .88rem; color: var(--text-body); margin-bottom: 20px; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.service-list li {
  font-size: .82rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ================================================
   AMENITIES
   ================================================ */
.amenities {
  padding: 10vh 0;
  background: var(--blue-xpale);
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.amenities-text h2 { margin-bottom: 16px; }
.amenities-text p { margin-bottom: 32px; font-size: .95rem; }
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.amenity-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}
.amenity-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.amenity-item span {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.amenities-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.av-box {
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.av-box:nth-child(1) { aspect-ratio: 1; background: linear-gradient(135deg, #e9e0cd, #d2c4a8); }
.av-box:nth-child(2) { aspect-ratio: 1; background: linear-gradient(135deg, #ece4d3, #d8c9ab); margin-top: 24px; }
.av-box:nth-child(3) { aspect-ratio: 1; background: linear-gradient(135deg, #e6dcc7, #cdbd9d); margin-top: -24px; }
.av-box:nth-child(4) { aspect-ratio: 1; background: linear-gradient(135deg, #efe8d8, #dccfb2); }

/* ================================================
   INFO BLOCKS (dark)
   ================================================ */
.info-blocks {
  padding: 10vh 0;
  background: var(--blue-xpale);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-block { padding: 20px 0; }
.info-block .eyebrow { color: var(--blue-hover); }
.info-block h2 { color: var(--text-dark); margin-bottom: 16px; }
.info-block p  { color: var(--text-body); font-size: .95rem; margin-bottom: 24px; }
.info-block .btn { margin-top: 8px; }
.info-divider {
  width: 1px;
  background: var(--border);
  height: 100%;
  min-height: 300px;
  justify-self: center;
}

/* ================================================
   ÉQUIPE
   ================================================ */
.team {
  padding: 10vh 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.tp-1 { background: linear-gradient(160deg, #e9e0cd, #d2c4a8); }
.tp-2 { background: linear-gradient(160deg, #ece4d3, #d8c9ab); }
.tp-3 { background: linear-gradient(160deg, #e6dcc7, #cdbd9d); }
.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(184,152,95,.25) 0%, transparent 60%);
}
.team-photo-inner { position: relative; z-index: 1; }
.team-badge-role {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}
.team-info {
  padding: 24px;
  border-top: 3px solid var(--blue-pale);
}
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-specialty {
  font-size: .78rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.team-info p { font-size: .82rem; color: var(--text-body); margin-bottom: 16px; }
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-tag {
  font-size: .68rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--blue-xpale);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ================================================
   STATS BANNER
   ================================================ */
.stats-banner {
  background: var(--navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  padding: 10vh 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-body); font-size: .95rem; margin-bottom: 36px; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.ci-value { font-size: .9rem; color: var(--text-dark); font-weight: 400; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.4rem; margin-bottom: 6px; }
.form-subtitle { font-size: .85rem; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; padding: 16px; font-size: .82rem; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  padding: 10vh 0;
  background: var(--navy-2);
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.cta-section p {
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: .95rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-phone-big {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 28px;
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
  border-top: 3px solid var(--blue);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer-col h5 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.fh-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 300;
  gap: 12px;
}
.fh-row .day  { color: rgba(255,255,255,.35); }
.fh-row .time { color: rgba(255,255,255,.65); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .75rem; font-weight: 300; color: rgba(255,255,255,.2); }
.footer-copy a { color: rgba(184,152,95,.75); transition: color var(--transition); }
.footer-copy a:hover { color: var(--blue-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  transition: color var(--transition);
  letter-spacing: .05em;
}
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ================================================
   PAGE HEADER
   ================================================ */
.page-hero {
  background: var(--blue-xpale);
  padding: 160px 0 80px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,152,95,.14) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--blue-hover); }
.page-hero h1 { color: var(--text-dark); margin: 12px 0 16px; }
.page-hero p   { color: var(--text-body); font-size: .95rem; max-width: 500px; }

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .welcome-grid      { grid-template-columns: 1fr; gap: 40px; }
  .welcome-visual    { display: none; }
  .amenities-grid    { grid-template-columns: 1fr; gap: 40px; }
  .amenities-visual  { display: none; }
  .info-grid         { grid-template-columns: 1fr; gap: 40px; }
  .info-divider      { display: none; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .testi-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.2); }
  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .menu-toggle { display: flex; }
  .hero { height: 70vh; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 28px 20px; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .amenity-list  { grid-template-columns: 1fr; }
  .cta-actions   { flex-direction: column; }
}

/* ================================================
   LOGO IMAGE (navbar) + footer wordmark
   ================================================ */
/* White logo PNG → rendered dark on the light navbar via filter.
   Shown only when the image loads; otherwise the text fallback appears. */
.logo-img { height: 40px; width: auto; max-width: 62vw; display: block; filter: brightness(0); }
.logo-fallback { display: none; align-items: center; gap: 12px; }
/* Sigle seul (médaillon) + texte "David Hacmoun & Associés" */
.logo-sigle { height: 46px; width: auto; display: block; filter: brightness(0); }
.footer .logo-sigle { filter: none; height: 48px; }
/* Footer sits on charcoal — keep logo white & wordmark light */
.footer .logo-img { filter: none; height: 44px; }
.footer .logo-name { color: var(--white); }
.footer .logo-sub  { color: var(--blue-light); }

/* ================================================
   MOBILE MENU (dropdown when burger is tapped)
   ================================================ */
@media (max-width: 768px) {
  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 14px 5% 20px;
    gap: 2px;
  }
  .navbar.menu-open .nav-links a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
  }
  .navbar.menu-open .nav-links li:last-child a { border-bottom: none; }
}

/* ================================================
   GALERIE — avant / après
   ================================================ */
.gallery { padding: 10vh 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ba-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-side {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.ba-before { background: linear-gradient(160deg, #efe8d8, #dccfb2); }
.ba-after  { background: linear-gradient(160deg, #e7ddca, #d2c4a8); }
.ba-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.ba-tag.before { background: rgba(26,23,20,.7); color: #fff; }
.ba-tag.after  { background: var(--blue); color: #fff; }
.ba-body { padding: 22px 24px; }
.ba-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.ba-body .ba-specialty {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.ba-body p { font-size: .85rem; color: var(--text-body); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ================================================
   PHOTOS — remplissent les conteneurs placeholders existants
   ================================================ */
.welcome-img { position: relative; }
.welcome-img img,
.av-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Portraits dans les cartes équipe */
.team-photo img,
.doc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
/* Photo d'équipe dans l'en-tête de la page Notre Équipe */
.team-hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

/* ================================================
   GALERIE — cartes de cas + visionneuse (lightbox)
   ================================================ */
.gallery-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.case-card {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.case-side, .case-single { position: relative; overflow: hidden; background: #ece5d8; }
.case-side { aspect-ratio: 3 / 4; }
.case-single { aspect-ratio: 4 / 3; }
.case-side img, .case-single img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-tag {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 1;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.case-tag.before, .case-tag.tech { background: rgba(26,23,20,.72); color: #fff; }
.case-tag.after { background: var(--blue); color: #fff; }
.case-count {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 1;
  font-size: .6rem;
  font-weight: 600;
  background: rgba(255,255,255,.92);
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
}
.case-body { padding: 18px 20px 20px; }
.case-specialty {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.case-body h3 { font-size: 1rem; margin-bottom: 10px; }
.case-view { font-size: .78rem; font-weight: 600; color: var(--text-dark); }
.case-card:hover .case-view { color: var(--blue-hover); }
@media (max-width: 1000px) { .gallery-cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gallery-cases { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20,17,15,.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-cap { color: rgba(255,255,255,.85); font-size: .85rem; letter-spacing: .04em; text-align: center; }
.lb-close {
  position: absolute;
  top: 20px; right: 26px;
  background: none; border: none;
  color: #fff; font-size: 2.4rem; line-height: 1;
  cursor: pointer; opacity: .8;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-count {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .1em;
}
@media (max-width: 768px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* L'établissement en images */
.clinic-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.clinic-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.clinic-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .clinic-photos { grid-template-columns: 1fr; } }

/* Bouton Doctolib (identité visuelle Doctolib) */
.btn-doctolib {
  background: #107ACA;
  color: #fff;
  border-color: #107ACA;
  text-transform: none;
  letter-spacing: .01em;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 14px 26px;
  box-shadow: 0 6px 18px rgba(16,122,202,.28);
}
.btn-doctolib::before {
  content: '';
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn-doctolib:hover {
  background: #0e6bb0;
  border-color: #0e6bb0;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(16,122,202,.42);
  color: #fff;
}
.doctolib-book {
  text-align: center;
  padding: 20px;
  margin-bottom: 28px;
  background: rgba(16,122,202,.06);
  border: 1px solid rgba(16,122,202,.18);
  border-radius: var(--radius-md);
}
.doctolib-book-title { font-size: .9rem; font-weight: 600; color: #0e6bb0; margin-bottom: 14px; }
.doctolib-book-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.doctolib-book-btns .btn { padding: 11px 20px; font-size: .72rem; }
.doctolib-book-or { font-size: .78rem; color: var(--text-muted); margin-top: 14px; }

/* Accueil éditorial — grande image pleine largeur + texte dessous */
.welcome-editorial { background: var(--white); padding: 8vh 0; }
.we-media { width: 100%; height: 74vh; min-height: 460px; overflow: hidden; }
.we-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.we-text { max-width: 860px; text-align: center; padding-bottom: 46px; }
.we-text h2 { margin: 14px 0 22px; }
.we-text p { color: var(--text-body); font-size: 1.02rem; line-height: 1.85; margin-bottom: 30px; }
@media (max-width: 768px) { .we-media { height: 52vh; min-height: 320px; } }

/* Bandeau pleine largeur (photo + phrase) */
.fw-band { position: relative; width: 100%; height: 62vh; min-height: 400px; overflow: hidden; }
.fw-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.fw-band-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(26,23,20,.62) 0%, rgba(26,23,20,.28) 45%, transparent 80%);
}
.fw-band-overlay h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 14px; max-width: 620px; }
.fw-band-overlay p { color: rgba(255,255,255,.88); font-size: 1.05rem; line-height: 1.7; max-width: 500px; }
@media (max-width: 768px) {
  .fw-band { height: 56vh; }
  .fw-band-overlay { background: linear-gradient(180deg, rgba(26,23,20,.35), rgba(26,23,20,.7)); align-items: flex-end; padding-bottom: 32px; }
}

/* Fiches conseil */
.conseil-note {
  background: var(--blue-xpale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--text-body);
  margin: 40px 0 28px;
  line-height: 1.6;
}
.tips { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.tip {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.tip summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tip summary::-webkit-details-marker { display: none; }
.tip summary::after { content: '+'; font-size: 1.5rem; line-height: 1; color: var(--blue); font-weight: 400; flex-shrink: 0; }
.tip[open] summary::after { content: '−'; }
.tip[open] summary { color: var(--blue-hover); }
.tip-body { padding: 0 22px 20px; }
.tip-body p { color: var(--text-body); font-size: .92rem; line-height: 1.65; margin-bottom: 10px; }
.tip-body p + ul { margin-top: 4px; }
.tip-body ul + p { margin-top: 12px; }
.tip-body ul { display: flex; flex-direction: column; gap: 8px; }
.tip-body li {
  font-size: .9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.tip-body li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* Vidéo YouTube responsive */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Carousel plein écran — Établissement */
.etab-carousel-section { padding: 30px 0 60px; background: var(--off-white); }
.etab-carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 460px;
  overflow: hidden;
  background: #000;
}
.etab-track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.65,.05,.36,1); }
.etab-slide { min-width: 100%; height: 100%; }
.etab-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.etab-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}
.etab-nav:hover { background: rgba(255,255,255,.32); }
.etab-prev { left: 24px; }
.etab-next { right: 24px; }
.etab-dots {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.etab-dots button {
  width: 9px; height: 9px;
  border-radius: 50px;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.etab-dots button.active { background: #fff; width: 26px; }
@media (max-width: 768px) {
  .etab-carousel { height: 56vh; min-height: 340px; }
  .etab-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .etab-prev { left: 10px; }
  .etab-next { right: 10px; }
}
