/* ============================================
   MAÎTRE PHILIPPA DEBUREAU — AVOCATE À NÎMES
   Palette: black & white — sobre
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* DESIGN TOKENS — black & white */
:root {
  --white: #ffffff;
  --bg-alt: #f6f6f6;
  --bg-soft: #fafafa;
  --black: #000000;
  --dark: #0a0a0a;
  --dark-soft: #1a1a1a;
  --text: #111111;
  --text-muted: #6b6b6b;
  --text-light: #ffffff;
  --border: #e5e5e5;
  --border-soft: #efefef;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, .08);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .14);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1240px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-muted); }

.serif { font-family: var(--serif); }
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--dark);
}

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 0;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-light:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-arrow::after {
  content: '→';
  transition: transform .3s ease;
  letter-spacing: 0;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HEADER + NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.header.dark-mode:not(.scrolled) .nav-link,
.header.dark-mode:not(.scrolled) .logo-text,
.header.dark-mode:not(.scrolled) .logo-tag,
.header.dark-mode:not(.scrolled) .nav-icons a { color: var(--white); }
.header.dark-mode:not(.scrolled) .logo-mark {
  border-color: var(--white);
  color: var(--white);
}
.header.dark-mode:not(.scrolled) .nav-icons a {
  border-color: rgba(255, 255, 255, .3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--dark);
  border-radius: 50%;
  color: var(--dark);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
}
.logo-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}
.nav-link:hover, .nav-link.active { color: var(--text-muted); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

/* DROPDOWN */
.has-dropdown { position: relative; }
.dropdown-arrow {
  display: inline-block;
  font-size: .55rem;
  transition: transform .3s ease;
  margin-top: 2px;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 14px 18px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: all .2s ease;
  border-left: 2px solid transparent;
}
.dropdown li a:hover {
  background: var(--bg-alt);
  border-left-color: var(--dark);
  padding-left: 22px;
}
.dropdown li a small {
  display: block;
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .03em;
  text-transform: none;
  color: var(--text-muted);
  margin-top: 4px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-icons a {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--dark);
  transition: all .25s ease;
}
.nav-icons a:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white) !important;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  transition: all .3s ease;
}
.header.dark-mode:not(.scrolled) .menu-toggle span { background: var(--white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--dark);
  color: var(--white);
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, .04), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { padding: 20px 0; }
.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin: 1.25rem 0 1.5rem;
}
.hero h1 .accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-meta-item .label {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
  display: block;
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .1);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.15);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .55));
}
.hero-photo-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: var(--white);
}
.hero-photo-badge .name {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 4px;
  font-weight: 400;
}
.hero-photo-badge .role {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

/* ============================================
   STATS BAND
   ============================================ */
.stats {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
  padding: 24px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   SECTION: EXPERTISE
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 .accent {
  font-style: italic;
  color: var(--text-muted);
}
.section-header p { font-size: 1.05rem; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.expertise-card {
  background: var(--white);
  padding: 50px 40px;
  text-align: left;
  transition: all .35s ease;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.expertise-card:last-child { border-right: none; }
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.expertise-card:hover {
  background: var(--bg-soft);
}
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 50%;
}
.expertise-icon svg { width: 26px; height: 26px; }
.expertise-card h3 { margin-bottom: 14px; }
.expertise-card p { font-size: .95rem; margin-bottom: 24px; line-height: 1.7; }
.expertise-link {
  font-size: .75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--dark);
}
.expertise-link::after { content: '→'; transition: transform .3s ease; letter-spacing: 0; }
.expertise-card:hover .expertise-link::after { transform: translateX(4px); }

/* ============================================
   SECTION: ABOUT
   ============================================ */
.about {
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ededed;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(.1); }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; line-height: 1.8; font-size: 1rem; }
.about-credentials {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
}
.credential-item {
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.credential-item:last-child { border-right: none; }
.credential-item .label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.credential-item .value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--dark);
}

/* ============================================
   HONORAIRES TEASER
   ============================================ */
.honoraires-teaser {
  background: var(--white);
}
.honoraires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border: 1px solid var(--border);
}
.honoraire-card {
  background: var(--white);
  padding: 44px 36px;
  text-align: center;
  transition: all .3s ease;
  border-right: 1px solid var(--border);
}
.honoraire-card:last-child { border-right: none; }
.honoraire-card:hover {
  background: var(--bg-soft);
}
.honoraire-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--dark);
  width: 56px; height: 56px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  line-height: 54px;
  margin-bottom: 22px;
}
.honoraire-card h4 { margin-bottom: 12px; font-size: 1.35rem; }
.honoraire-card p { font-size: .92rem; line-height: 1.7; }

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-cta h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-cta h2 .accent { font-style: italic; color: rgba(255, 255, 255, .8); }
.contact-cta p { color: rgba(255, 255, 255, .65); font-size: 1.05rem; margin-bottom: 2.5rem; }
.contact-cta-info {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.contact-info-item .label {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-info-item .value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
}
.contact-info-item a:hover { color: rgba(255, 255, 255, .7); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, .65);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-mark { border-color: var(--white); color: var(--white); }
.footer-brand .logo-tag { color: rgba(255, 255, 255, .5); }
.footer-brand p {
  font-size: .9rem;
  margin-top: 22px;
  max-width: 320px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .55);
}
.footer h5 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: .02em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  transition: all .25s ease;
}
.footer ul a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-line {
  font-size: .88rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}
.footer-contact-line strong {
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  letter-spacing: .15em;
  font-size: .68rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}
.footer-bottom a { color: rgba(255, 255, 255, .5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, .04), transparent 60%);
}
.page-hero-inner {
  position: relative;
  max-width: 800px;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.page-hero h1 .accent { font-style: italic; color: rgba(255, 255, 255, .8); }
.page-hero p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}
.breadcrumb a { color: rgba(255, 255, 255, .8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255, 255, 255, .25); }

/* ============================================
   CONTENT BLOCK (inner pages)
   ============================================ */
.content-block {
  background: var(--white);
}
.content-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.content-side {
  position: sticky;
  top: 120px;
}
.content-side-card {
  background: var(--bg-alt);
  padding: 36px;
  border-left: 2px solid var(--dark);
}
.content-side-card h4 { margin-bottom: 18px; }
.content-side-card ul { list-style: none; }
.content-side-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}
.content-side-card ul li:last-child { border-bottom: none; }
.content-side-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark);
  flex-shrink: 0;
}
.content-main h2 { margin-bottom: 1.5rem; }
.content-main h3 { margin: 2.5rem 0 1rem; }
.content-main p { margin-bottom: 1.25rem; line-height: 1.85; font-size: 1.02rem; }
.content-main ul:not(.bare) {
  margin: 1.25rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
}
.content-main ul:not(.bare) li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--text-muted);
  line-height: 1.7;
}
.content-main ul:not(.bare) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 20px;
  height: 1px;
  background: var(--dark);
}

.callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--dark);
  padding: 28px 32px;
  margin: 2.5rem 0;
}
.callout p { margin: 0; color: var(--dark); font-size: .98rem; line-height: 1.75; }

/* ============================================
   HONORAIRES PAGE
   ============================================ */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.fee-block {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.fee-block:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow-md);
}
.fee-icon {
  width: 60px; height: 60px;
  border: 1.5px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  margin-bottom: 26px;
}
.fee-icon svg { width: 26px; height: 26px; }
.fee-block h3 { margin-bottom: 12px; }
.fee-block > p { font-size: .95rem; margin-bottom: 24px; line-height: 1.75; }
.fee-block ul { list-style: none; }
.fee-block ul li {
  padding: 10px 0;
  font-size: .9rem;
  color: var(--text);
  position: relative;
  padding-left: 26px;
  border-top: 1px solid var(--border-soft);
}
.fee-block ul li:first-child { border-top: none; }
.fee-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--dark);
  font-weight: 700;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info-block {
  background: var(--bg-alt);
  padding: 52px 44px;
}
.contact-info-block h3 { margin-bottom: 1.75rem; }
.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail .label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}
.contact-detail .value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.5;
}
.contact-detail .value a { color: var(--dark); }
.contact-detail .value a:hover { color: var(--text-muted); }

.contact-form {
  background: var(--white);
  padding: 52px 44px;
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 1.75rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
  transition: all .25s ease;
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.6;
}

.map-section {
  background: var(--white);
  padding-top: 0;
}
.map-frame {
  width: 100%;
  height: 480px;
  border: none;
  filter: grayscale(.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; }
  .nav-link {
    width: 100%;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--dark) !important;
  }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: var(--bg-alt);
    border: none;
    margin-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .dropdown::before { display: none; }
  .has-dropdown.open .dropdown { max-height: 500px; padding: 12px; }
  .menu-toggle { display: flex; }

  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat:not(:last-child)::after { display: none; }
  .stat:not(:last-child) { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { border-right: none; border-bottom: 1px solid var(--border); }
  .expertise-card:last-child { border-bottom: none; }
  .honoraires-grid { grid-template-columns: 1fr; }
  .honoraire-card { border-right: none; border-bottom: 1px solid var(--border); }
  .honoraire-card:last-child { border-bottom: none; }
  .fees-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .credential-item { border-right: none; border-bottom: 1px solid var(--border); }
  .credential-item:last-child { border-bottom: none; }
  .contact-info-block, .contact-form { padding: 36px 28px; }
  .hero { padding: 120px 0 60px; min-height: auto; }
}
