/* =========================================================
   DESIGN TOKENS — IDF Dentaire brand
   ========================================================= */
:root {
  --c-navy: #1E2266;
  --c-navy-deep: #141852;
  --c-navy-light: #2A2F7A;
  --c-navy-50: #EEEEF8;
  --c-navy-100: #D5D6ED;
  --c-navy-200: #AAADE0;

  --c-accent: #E8553D;
  --c-accent-hover: #D4432C;
  --c-accent-light: #FFF0ED;

  --c-ink: #111827;
  --c-ink-2: #1F2937;
  --c-text: #374151;
  --c-muted: #6B7280;
  --c-soft: #9CA3AF;

  --c-bg: #FFFFFF;
  --c-bg-soft: #F9FAFB;
  --c-bg-warm: #FAFAF8;
  --c-border: #E5E7EB;
  --c-border-strong: #D1D5DB;

  --grad-navy: linear-gradient(135deg, #2A2F7A 0%, #1E2266 50%, #141852 100%);
  --grad-hero: linear-gradient(160deg, #1E2266 0%, #141852 60%, #0F0F3D 100%);

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-card: 0 1px 3px rgba(30,34,102,.06), 0 8px 24px -8px rgba(30,34,102,.10);
  --shadow-accent: 0 8px 24px -6px rgba(232,85,61,.35);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-pill: 999px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--c-ink); margin: 0; line-height: 1.15; font-weight: 700; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--c-navy); color: #fff; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  transition: all .3s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-accent {
  background: var(--c-accent); color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover { background: var(--c-accent-hover); transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(232,85,61,.45); }
.btn-navy { background: var(--c-navy); color: #fff; }
.btn-navy:hover { background: var(--c-navy-light); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--c-navy); border: 1.5px solid var(--c-border); }
.btn-white:hover { border-color: var(--c-navy); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 700px) { .topbar-left { display: none; } }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--c-navy); letter-spacing: -.01em; }
.logo-mark { height: 46px; width: auto; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.logo-mark img { height: 100%; width: auto; max-width: 150px; object-fit: contain; display: block; }
.logo-mark-footer { height: 40px; background: #fff; border-radius: 8px; padding: 4px 8px; }
.logo-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--c-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-weight: 600; font-size: 14px; color: var(--c-text); padding: 8px 14px; border-radius: var(--r-sm); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--c-navy); background: var(--c-navy-50); }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--c-navy); font-size: 14px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--c-accent); }
.menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--r-sm); }
.menu-toggle:hover { background: var(--c-navy-50); }
.menu-toggle svg { width: 22px; height: 22px; color: var(--c-ink); }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-phone span { display: none; }
}
@media (max-width: 640px) {
  .nav-cta-wrap .btn { display: none; }
  .nav-phone { display: none; }
}
@media (max-width: 480px) {
  .logo-text { display: none; }
  .logo-mark { height: 40px; }
}
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.4); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; }
.mobile-nav.open { display: block; opacity: 1; }
.mobile-nav-panel { position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%; background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 8px; transform: translateX(100%); transition: transform .35s var(--ease-out); }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close { align-self: flex-end; width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-sm); }
.mobile-nav-close:hover { background: var(--c-navy-50); }
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav a { display: block; padding: 14px 16px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--c-ink); border-radius: var(--r-sm); transition: background .2s; }
.mobile-nav a:hover { background: var(--c-navy-50); }

/* =========================================================
   HERO
   ========================================================= */
.hero { color: #fff; position: relative; overflow: hidden; padding: 120px 0 100px; min-height: 600px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(14,18,72,0.72) 0%, rgba(20,24,82,0.62) 45%, rgba(14,18,72,0.38) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill); font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.hero-badge-dot { width: 24px; height: 24px; background: var(--c-accent); border-radius: 50%; display: grid; place-items: center; }
.hero-badge-dot svg { width: 12px; height: 12px; }
.hero h1 { font-size: clamp(38px, 5.5vw, 64px); color: #fff; letter-spacing: -.03em; margin-bottom: 22px; line-height: 1.06; }
.hero h1 .accent { color: var(--c-accent); }
.hero-lead { font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 36px; line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-v { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-v .unit { font-size: 18px; color: var(--c-accent); }
.hero-stat-l { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 6px; }
@media (max-width: 900px) { .hero { padding: 90px 0 80px; min-height: 520px; } .hero-stats { gap: 32px; flex-wrap: wrap; } }
@media (max-width: 500px) { .hero { padding: 80px 0 64px; } .hero-stats { gap: 24px; } .hero-stat-v { font-size: 28px; } }

/* =========================================================
   SECTIONS — shared
   ========================================================= */
section { padding: 96px 0; position: relative; }
@media (max-width: 700px) { section { padding: 64px 0; } }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-tag { display: inline-block; padding: 5px 14px; background: var(--c-navy-50); color: var(--c-navy); border-radius: var(--r-pill); font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -.025em; margin-bottom: 14px; }
.section-lead { font-size: 17px; color: var(--c-muted); line-height: 1.65; }

/* =========================================================
   REALISATIONS
   ========================================================= */
.realisations { background: var(--c-bg-soft); }
.real-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.real-card { display: block; position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--c-navy-50); cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s; }
.real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.real-card img { object-fit: contain; transition: transform .6s var(--ease); }
.real-card:hover img { transform: scale(1.05); }
.real-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,24,82,.8) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 24px; }
.real-card-overlay h3 { color: #fff; font-size: 20px; }
.real-card-overlay small { display: block; color: rgba(255,255,255,.7); font-size: 13px; margin-top: 4px; }
@media (max-width: 700px) { .real-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .real-grid { grid-template-columns: 1fr; } }

/* =========================================================
   A PROPOS
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.45fr 0.9fr; gap: 48px; align-items: center; }
.about-text p { font-size: 16.5px; line-height: 1.75; color: var(--c-text); margin-bottom: 16px; }
.about-text p strong { color: var(--c-ink); }
.about-more { display: inline-block; margin-top: 8px; font-size: 20px; color: var(--c-navy); text-decoration: none; transition: transform .2s; }
.about-more:hover { transform: translateX(4px); }
.about-stats { display: flex; flex-direction: column; gap: 12px; }
.about-stat-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 20px 24px; text-align: center; transition: transform .3s var(--ease), border-color .3s; }
.about-stat-card:hover { transform: translateY(-3px); border-color: var(--c-navy-200); }
.about-stat-card .v { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--c-navy); line-height: 1; }
.about-stat-card .l { font-size: 13px; color: var(--c-muted); font-weight: 600; margin-top: 6px; }
.about-img { border-radius: var(--r-lg); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } .about-img { grid-column: 1 / -1; max-height: 300px; } }
@media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } .about-img { max-height: 220px; } }

/* =========================================================
   SERVICES — page-style layout
   ========================================================= */
.svc-hero {
  background: var(--c-navy);
  padding: 56px 0;
}
.svc-hero h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.svc-block {
  padding: 70px 0;
  background: #fff;
}
.svc-dark {
  background: var(--c-navy);
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-row-align {
  align-items: center;
}

.svc-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-col-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -.01em;
}
.svc-dark .svc-col-title {
  color: #fff;
}

.svc-col-body p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.72;
}
.svc-col-body p + p { margin-top: 12px; }
.svc-dark .svc-col-body p { color: rgba(255,255,255,.78); }

.svc-col-img {
  border-radius: var(--r-md);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-md);
}
.svc-col-img svg, .svc-col-img img { width: 100%; height: auto; display: block; object-fit: cover; }

.svc-col-img-only {
  border-radius: var(--r-md);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-md);
}
.svc-col-img-only svg, .svc-col-img-only img { width: 100%; height: auto; display: block; object-fit: cover; }

@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; gap: 40px; }
  .svc-block { padding: 50px 0; }
}

/* =========================================================
   PRODUITS
   ========================================================= */
.produits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.produit-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 20px 20px 20px; text-align: center; transition: all .3s var(--ease); cursor: pointer; }
.produit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--c-navy); }
.produit-icon { width: 64px; height: 64px; background: var(--c-navy-50); color: var(--c-navy); border-radius: 16px; display: grid; place-items: center; margin: 0 auto 16px; transition: background .3s, color .3s; }
.produit-card:hover .produit-icon { background: var(--c-navy); color: #fff; }
.produit-icon svg { width: 28px; height: 28px; }
.produit-img { height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.produit-img img { max-width: 100%; max-height: 160px; width: auto; height: auto; object-fit: contain; display: block; }
.produit-card h3 { font-size: 14px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--c-ink-2); }
@media (max-width: 700px) { .produits-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   POURQUOI NOUS
   ========================================================= */
.why { background: var(--c-bg-soft); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 28px 24px; transition: transform .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-3px); border-color: var(--c-navy-200); }
.why-icon { width: 44px; height: 44px; background: var(--grad-navy); color: #fff; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; }
.why-icon svg { width: 20px; height: 20px; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--c-muted); line-height: 1.6; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PARTENAIRES
   ========================================================= */
#partenaires {
  scroll-margin-top: 100px;
}
.partners-strip { background: #fff; padding: 40px 0; overflow: hidden; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.partners-title { text-align: center; color: var(--c-muted); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 28px; }
.partners-track { display: flex; align-items: center; gap: 64px; animation: scrollLogos 30s linear infinite; width: max-content; }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-logo { flex-shrink: 0; display: flex; align-items: center; }
.partner-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
.partner-logo:hover { color: rgba(255,255,255,.7); }

/* =========================================================
   TEMOIGNAGE
   ========================================================= */
.testimonial { background: var(--c-bg-soft); }

/* Google score badge */
.testi-score-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.testi-score-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 28px 48px;
  box-shadow: var(--shadow-sm);
}
.testi-google-logo { width: 28px; height: 28px; }
.testi-score-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  color: var(--c-navy); line-height: 1;
}
.testi-score-stars { color: #F59E0B; font-size: 22px; letter-spacing: 3px; }
.testi-score-label { font-size: 13px; color: var(--c-muted); font-weight: 600; }

/* Cards grid */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testi-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }

.testi-quote {
  font-size: 16px; font-style: italic; color: var(--c-ink-2);
  line-height: 1.75; margin: 0 0 28px;
  padding-left: 20px;
  border-left: 3px solid var(--c-navy-100);
  flex: 1;
}

.testi-footer { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--c-border); }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--av-color, var(--c-navy));
  color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.testi-meta .testi-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--c-ink); }
.testi-meta .testi-role { font-size: 13px; color: var(--c-muted); margin-top: 2px; }

@media (max-width: 700px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-score-card { padding: 24px 32px; }
}

/* =========================================================
   RENDEZ-VOUS SECTION
   ========================================================= */
.rdv-section {
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}
.rdv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 80% 50%, rgba(42,47,122,.5), transparent 60%);
  pointer-events: none;
}
.rdv-section .container { position: relative; z-index: 1; }
.rdv-section .section-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.rdv-section .section-title { color: #fff; }
.rdv-section .section-lead { color: rgba(255,255,255,.65); }

.rdv-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 44px;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
}

/* =========================================================
   CONTACT DETAILS SECTION
   ========================================================= */
.contact-details { background: var(--c-bg-soft); }

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  align-items: stretch;
}
.contact-bottom .contact-card { height: 100%; }

.contact-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 24px; transition: border-color .25s, transform .25s; }
.contact-card:hover { border-color: var(--c-navy-200); transform: translateY(-2px); }
.contact-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact-card-head .icn { width: 36px; height: 36px; background: var(--c-navy-50); color: var(--c-navy); border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.contact-card-head .icn svg { width: 16px; height: 16px; }
.contact-card-head h3 { font-size: 15px; }
.contact-card-body p { font-size: 15px; color: var(--c-text); font-weight: 600; }
.contact-card-body small { display: block; font-size: 13px; color: var(--c-muted); margin-top: 3px; }
.contact-card-body a.tel { font-family: var(--font-display); color: var(--c-navy); font-weight: 800; font-size: 22px; }
.contact-card-body a.tel:hover { color: var(--c-accent); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-border); background: var(--c-navy-50); min-height: 260px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.hours { display: grid; gap: 4px; }
.hour-row { display: grid; grid-template-columns: 80px 1fr; gap: 8px; align-items: baseline; padding: 5px 0; font-size: 14px; border-bottom: 1px dashed var(--c-border); }
.hour-row:last-child { border-bottom: 0; }
.hour-day { font-weight: 700; color: var(--c-ink-2); }
.hour-val { color: var(--c-muted); font-weight: 500; font-variant-numeric: tabular-nums; }
.hour-val.closed { color: var(--c-accent); font-weight: 600; }
.hour-row.today { background: var(--c-navy-50); margin: 0 -10px; padding: 6px 10px; border-radius: 6px; border-bottom: 0; }
.hour-row.today .hour-day, .hour-row.today .hour-val { color: var(--c-navy); }
.hour-row.today .hour-day::after { content: "Aujourd'hui"; display: inline-block; margin-left: 6px; padding: 2px 7px; background: var(--c-navy); color: #fff; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }

/* =========================================================
   FORM FIELDS (shared)
   ========================================================= */
.field { display: grid; gap: 5px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 700; color: var(--c-ink-2); }
.field input, .field select, .field textarea { font-family: inherit; background: var(--c-bg-soft); border: 1.5px solid var(--c-border); border-radius: var(--r-sm); padding: 11px 14px; font-size: 15px; color: var(--c-ink); transition: border-color .2s, box-shadow .2s, background .2s; }
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-navy); background: #fff; box-shadow: 0 0 0 3px rgba(30,34,102,.10); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-legal { font-size: 12px; color: var(--c-soft); margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .contact-cards-row { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; }
  .rdv-form-wrap { padding: 28px 20px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .contact-cards-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner { background: var(--grad-navy); color: #fff; padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(232,85,61,.15), transparent 60%); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; letter-spacing: -.02em; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: #0C0E30; color: rgba(255,255,255,.6); padding: 56px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-grid h5 { font-family: var(--font-display); color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 16px; font-weight: 700; }
.foot-grid ul { display: grid; gap: 10px; }
.foot-grid a { font-size: 14.5px; transition: color .2s; }
.foot-grid a:hover { color: #fff; }
.foot-about { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.65; margin-top: 14px; }
.foot-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.3); }
.foot-bottom a { color: rgba(255,255,255,.3); }
.foot-bottom a:hover { color: rgba(255,255,255,.6); }
.foot-logo { display: flex; align-items: center; gap: 10px; }
.foot-logo .logo-mark { height: 40px; width: auto; }
.foot-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; }
.foot-logo-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.mobile-cta { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-pill); box-shadow: 0 12px 32px -8px rgba(0,0,0,.15); padding: 8px 8px 8px 18px; align-items: center; justify-content: space-between; gap: 10px; }
@media (max-width: 700px) { .mobile-cta { display: flex; } body { padding-bottom: 80px; } }
.mobile-cta-text { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--c-ink); }
.mobile-cta-text small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--c-muted); font-size: 12px; }
.mobile-cta .btn { padding: 10px 18px; font-size: 14px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-img-float, .partners-track { animation: none !important; } }

/* =========================================================
   GALLERY PAGES
   ========================================================= */
.gallery-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 80% 20%, rgba(42,47,122,.6), transparent 60%), radial-gradient(600px 400px at 20% 80%, rgba(232,85,61,.08), transparent 50%);
  pointer-events: none;
}
.gallery-hero .container { position: relative; z-index: 1; }
.gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  transition: color .2s;
  text-decoration: none;
}
.gallery-back:hover { color: #fff; }
.gallery-back svg { width: 16px; height: 16px; }
.gallery-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.gallery-hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.gallery-hero-sub span { color: var(--c-accent); }
.gallery-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
}

.gallery-section { padding: 72px 0 96px; background: var(--c-bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-navy-50);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  transition: transform .55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.02); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.93);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  object-fit: contain;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .2s;
  z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); transform: scale(1.1); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  z-index: 10;
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}