/* ============================================================
   ÉTUDE ME ADAMA DIA — style.css
   Design: Clean, light, professional legal practice
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:     #000f39;
  --taupe:    #bbac9b;
  --taupe-lt: #d6cdc3;
  --taupe-bg: #f0ebe4;
  --cream:    #faf8f5;
  --white:    #ffffff;
  --stone:    #ece8e2;
  --dark:     #111111;
  --muted:    #767070;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w:  1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      0.45s;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);

  --radius:    4px;
  --radius-lg: 10px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.label-tag::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--taupe);
  flex-shrink: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn--primary:hover {
  background: transparent;
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--taupe {
  background: var(--taupe);
  color: var(--navy);
  border: 1.5px solid var(--taupe);
}
.btn--taupe:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ── Info bar (top) ────────────────────────────────────────── */
.info-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding-block: 0.45rem;
}
.info-bar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  gap: 1rem;
}
.info-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.info-bar-item svg { color: var(--taupe); flex-shrink: 0; }
.info-bar-item a { color: var(--muted); transition: color 0.3s; }
.info-bar-item a:hover { color: var(--navy); }
.info-bar-urgence {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #b71c1c;
}
.info-bar-urgence svg { color: #b71c1c; }
.info-bar-urgence a { color: #b71c1c; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.elevated { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 2rem;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav-mobile.open { opacity: 1; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--navy);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-mobile a:hover { opacity: 1; }
.nav-mobile .btn--primary { opacity: 1; color: var(--white); }
.nav-mobile .mobile-rdv { margin-top: 1rem; }

/* ── Floating urgence button ───────────────────────────────── */
.urgence-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
}
.urgence-float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #b71c1c;
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(183,28,28,0.4);
  transition: all 0.3s var(--ease);
  animation: pulse-urgence 3s ease-in-out infinite;
}
.urgence-float-btn:hover {
  background: #c62828;
  transform: scale(1.04);
}
@keyframes pulse-urgence {
  0%, 100% { box-shadow: 0 4px 20px rgba(183,28,28,0.4); }
  50% { box-shadow: 0 4px 28px rgba(183,28,28,0.65), 0 0 0 8px rgba(183,28,28,0.08); }
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 2rem;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 26ch;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--navy); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.footer-contact-line svg { flex-shrink: 0; margin-top: 2px; color: var(--taupe); }
.footer-contact-line a { color: var(--muted); transition: color 0.3s; }
.footer-contact-line a:hover { color: var(--navy); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--taupe);
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}
.page-hero .label-tag { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.page-hero h1 em { font-style: italic; color: var(--taupe); }
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}

/* ── Section scaffolding ───────────────────────────────────── */
.section {
  padding-block: 6rem;
}
.section--cream {
  background: var(--cream);
}
.section--taupe-bg {
  background: var(--taupe-bg);
}
.section-head {
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0.6rem;
}
.section-head h2 em { font-style: italic; color: var(--taupe); }
.section-head p {
  color: var(--muted);
  margin-top: 0.6rem;
  max-width: 52ch;
  line-height: 1.75;
}
.section-head--center { text-align: center; }
.section-head--center .label-tag { justify-content: center; }
.section-head--center .label-tag::before { display: none; }

/* ────────────────────────────────────────────────────────────
   HOME — HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--gutter) 5rem;
  padding-left: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-kicker-line {
  width: 2.5rem;
  height: 1px;
  background: var(--taupe);
}
.hero-kicker-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--taupe);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}
.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-contact-item svg { color: var(--taupe); }
.hero-contact-item a { color: var(--dark); font-weight: 500; transition: color 0.3s; }
.hero-contact-item a:hover { color: var(--navy); }

/* Hero image */
.hero-image-col {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 15%);
  z-index: 1;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1.5rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}
.hero-badge-sep {
  width: 1px;
  background: var(--stone);
  align-self: stretch;
}

/* ────────────────────────────────────────────────────────────
   HOME — SERVICES TEASER
   ──────────────────────────────────────────────────────────── */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--taupe));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--taupe-lt);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--taupe-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1.1rem;
  transition: background var(--dur), color var(--dur);
}
.svc-card:hover .svc-icon {
  background: var(--navy);
  color: var(--taupe);
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────
   HOME — ABOUT
   ──────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--stone);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-photo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-photo-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--taupe);
  line-height: 1;
}
.about-photo-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about-text h2 em { font-style: italic; color: var(--taupe); }
.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-block: 1px solid var(--stone);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

/* ────────────────────────────────────────────────────────────
   HOME — CTA BANNER
   ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--taupe-bg);
  border-block: 1px solid var(--taupe-lt);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 4.5rem;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.75vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  max-width: 32ch;
  line-height: 1.3;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   SERVICES PAGE
   ──────────────────────────────────────────────────────────── */
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.svc-card-full {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 1.75rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--navy), var(--taupe));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.svc-card-full:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--taupe-lt);
}
.svc-card-full:hover::before { transform: scaleY(1); }
.svc-card-full .svc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}
.svc-card-full:hover .svc-icon {
  background: var(--navy);
  color: var(--taupe);
}
.svc-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.svc-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  background: var(--taupe-bg);
  color: var(--navy);
  border: 1px solid var(--taupe-lt);
}
.services-cta-strip {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.services-cta-strip p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  max-width: 42ch;
  line-height: 1.45;
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--white);
  flex-shrink: 0;
}
.btn--white:hover {
  background: var(--taupe);
  border-color: var(--taupe);
}

/* ────────────────────────────────────────────────────────────
   BLOG
   ──────────────────────────────────────────────────────────── */
.blog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--stone);
  color: var(--muted);
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--stone);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.65rem;
  flex: 1;
}
.blog-card-body h3 a { transition: color 0.3s; }
.blog-card-body h3 a:hover { color: var(--taupe); }
.blog-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.775rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid var(--stone);
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 4rem;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border: 1.5px solid var(--stone);
  color: var(--muted);
  background: var(--white);
  transition: all 0.3s;
}
.page-btn:hover, .page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ────────────────────────────────────────────────────────────
   ARTICLE
   ──────────────────────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  padding-block: 4rem 7rem;
  align-items: start;
}
.article-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  margin-bottom: 2.5rem;
  background: var(--stone);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--stone);
  font-size: 0.825rem;
  color: var(--muted);
}
.article-meta-item { display: flex; align-items: center; gap: 0.4rem; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.article-body p {
  font-size: 1rem;
  color: #3a3535;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.article-body blockquote {
  border-left: 3px solid var(--taupe);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--taupe-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}
.article-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 1rem;
}
.sidebar-card--navy {
  background: var(--navy);
  border-color: var(--navy);
}
.sidebar-card--navy .sidebar-card-title {
  color: var(--taupe);
  border-color: rgba(187,172,155,0.2);
}
.sidebar-card--navy p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.sidebar-related-link {
  display: block;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--stone);
}
.sidebar-related-link:last-child { border: none; }
.sidebar-related-cat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.sidebar-related-title {
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s;
}
.sidebar-related-link:hover .sidebar-related-title { color: var(--taupe); }

/* ────────────────────────────────────────────────────────────
   FORMS
   ──────────────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.form-subtitle { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--dark);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--taupe);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(187,172,155,0.15);
}
.form-control::placeholder { color: rgba(118,112,112,0.5); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23767070' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
  padding: 0.9rem;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.btn--submit:hover {
  background: transparent;
  color: var(--navy);
}
.btn--submit:disabled { opacity: 0.65; pointer-events: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.form-success.show { display: flex; }
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #388e3c;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); }
.form-success p { font-size: 0.875rem; color: var(--muted); max-width: 28ch; }

/* ────────────────────────────────────────────────────────────
   CONTACT PAGE
   ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0.75rem 0 1.5rem;
  line-height: 1.3;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--taupe-bg);
  border: 1px solid var(--taupe-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.contact-info-text span, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.3s;
}
.contact-info-text a:hover { color: var(--taupe); }
.hours-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.75rem;
}
.hours-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--stone);
  color: var(--dark);
}
.hours-row:last-child { border: none; }
.hours-row .day { color: var(--muted); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  background: var(--stone);
  margin-top: 1.75rem;
  border: 1px solid var(--stone);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ────────────────────────────────────────────────────────────
   RENDEZ-VOUS PAGE
   ──────────────────────────────────────────────────────────── */
.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.rdv-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.3;
}
.rdv-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem; }
.rdv-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.rdv-step { display: flex; gap: 1rem; }
.rdv-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--taupe-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--taupe);
  flex-shrink: 0;
  margin-top: 2px;
}
.rdv-step-text strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.15rem; }
.rdv-step-text span { font-size: 0.825rem; color: var(--muted); }
.urgence-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183,28,28,0.2);
  background: #fff5f5;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.urgence-note svg { flex-shrink: 0; color: #b71c1c; margin-top: 2px; }
.urgence-note-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b71c1c;
  margin-bottom: 0.3rem;
}
.urgence-note-text p { font-size: 0.875rem; color: #5f2020; line-height: 1.6; }
.urgence-note-text a { color: #b71c1c; font-weight: 600; }

/* ── Article breadcrumb ────────────────────────────────────── */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--muted); transition: color 0.3s; }
.article-breadcrumb a:hover { color: var(--navy); }
.article-breadcrumb svg { color: var(--taupe-lt); flex-shrink: 0; }
.article-breadcrumb [aria-current="page"] { color: var(--taupe); }

/* ── Services CTA strip fix ────────────────────────────────── */
.services-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.5rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 90vw; min-height: unset; order: 1; }
  .hero-image-col::before { background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 30%); }
  .hero-content { padding-top: 3rem; padding-left: var(--gutter); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rdv-grid { grid-template-columns: 1fr; gap: 3rem; }
  .article-layout { grid-template-columns: 1fr; gap: 3rem; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-cta-strip .container { flex-direction: column; align-items: flex-start; }
  .services-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-image-col { display: none; }
  .hero-contact-strip { display: none; }
  .services-grid-2 { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .svc-card-full { flex-direction: column; gap: 1rem; padding: 1.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .cta-banner-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .info-bar-left { display: none; }
  .hero-badge { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-contact-strip { flex-direction: column; gap: 0.75rem; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
}
