/*
Theme Name:  Gabert Avocat
Description: Thème sur mesure — Avocat droit de la famille, Marseille
Version:     1.1.5
Author:      Gabert Avocat
Text Domain: cabinet-dupont
*/

/* ─────────────────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-2:      #243556;
  --gold:        #C8A96E;
  --gold-2:      #b8995e;
  --cream:       #FAFAF8;
  --white:       #ffffff;
  --text:        #374151;
  --muted:       #6B7280;
  --muted-light: #9CA3AF;
  --border:      #E5E7EB;
  --bg-light:    #F3F4F6;
  --cat-divorce-bg:    #FFE4E6; --cat-divorce-fg:    #BE123C;
  --cat-garde-bg:      #DBEAFE; --cat-garde-fg:      #1D4ED8;
  --cat-pension-bg:    #FEF3C7; --cat-pension-fg:    #B45309;
  --cat-adoption-bg:   #DCFCE7; --cat-adoption-fg:   #15803D;
  --cat-succession-bg: #F3E8FF; --cat-succession-fg: #7E22CE;
  --cat-mediation-bg:  #CFFAFE; --cat-mediation-fg:  #0E7490;
  --cat-banque-bg:     #FEF9C3; --cat-banque-fg:     #854D0E;
  --cat-huissier-bg:   #FFE4E6; --cat-huissier-fg:   #9F1239;
  --cat-penal-bg:      #F1F5F9; --cat-penal-fg:      #334155;
  --cat-default-bg:    #F3F4F6; --cat-default-fg:    #374151;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow:    0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 10px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --ease:      all .3s ease;
  --ease-slow: all .5s ease;
  --nav-height: 80px;
}

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

/* ─── TYPOGRAPHIE ─── */
h1, h2, h3, h4, h5, h6 { color: var(--navy); line-height: 1.15; font-weight: 400; }
h1 { font-size: clamp(2rem,   5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem,4vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── BOUTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .875rem 2rem; border-radius: 999px;
  font-size: .9375rem; font-weight: 600; border: none;
  transition: var(--ease); white-space: nowrap; min-height: 44px;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-2); box-shadow: 0 8px 24px rgba(200,169,110,.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { background: var(--bg-light); }

/* ─── EYEBROW ─── */
.eyebrow {
  display: block; color: var(--gold); font-size: .75rem;
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem;
}

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-weight: 400; }
.section-header h2 strong { font-weight: 600; }
.section-divider { width: 64px; height: 2px; background: var(--gold); margin: 1.5rem auto 0; }
.articles-preview-header .section-divider { margin-left: 0; margin-right: 0; }

/* ─── TOP BAR ─── */
.top-bar { display: none; background: var(--navy); color: rgba(255,255,255,.65); font-size: .75rem; padding: .5rem 0; }
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; gap: 1.5rem; }
.top-bar a { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.65); transition: color .2s; min-height: 44px; }
.top-bar a:hover { color: var(--white); }
.top-bar svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ─── NAVIGATION ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.site-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-icon { width: 42px; height: 42px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }
.logo-name { display: block; font-weight: 600; color: var(--navy); font-size: 1.1rem; line-height: 1.2; }
.logo-sub  { display: block; font-size: .7rem; color: var(--muted-light); letter-spacing: .08em; }
.nav-links { display: none; align-items: center; gap: .25rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links li a {
  display: inline-flex; align-items: center; padding: .5rem 1rem;
  border-radius: 999px; font-size: .875rem; font-weight: 500;
  color: var(--muted); transition: var(--ease); min-height: 44px;
}
.nav-links li a:hover { color: var(--navy); background: var(--bg-light); }
.nav-links li a.active { background: var(--navy); color: var(--white); }
.nav-cta { display: none; margin-left: 1rem; padding: .625rem 1.5rem; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: .5rem; background: none; border: none; min-width: 44px; min-height: 44px;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu li a {
  display: flex; align-items: center; padding: .75rem 1rem;
  border-radius: var(--radius-sm); font-size: .9375rem; font-weight: 500;
  color: var(--muted); margin-bottom: .25rem; min-height: 44px; transition: var(--ease);
}
.mobile-menu li a:hover { background: var(--bg-light); color: var(--navy); }
.mobile-menu .btn-primary { width: 100%; margin-top: .75rem; }

/* ─── PAGE HERO ─── */
.page-hero { background: var(--navy); padding: 5rem 1.5rem; text-align: center; }
.page-hero h1 { color: var(--white); font-weight: 400; }
.page-hero h1 strong { font-weight: 600; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 600px; margin: 1.25rem auto 0; font-size: 1.05rem; }

/* ─── HERO ACCUEIL ─── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy) 100%);
  overflow: hidden; padding: 5rem 0;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A96E' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: .5rem 1.25rem;
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.9);
  margin-bottom: 2rem; backdrop-filter: blur(8px);
}
.hero-badge svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }
.hero-content h1 { color: var(--white); font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content h1 strong { font-weight: 700; color: var(--gold); }
.hero-content p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-image { display: none; }
@media (min-width: 1024px) { .hero-image { display: block; } }
.hero-image-inner { position: relative; }
.hero-image-glow { position: absolute; inset: -1rem; background: rgba(200,169,110,.2); border-radius: var(--radius-xl); filter: blur(24px); pointer-events: none; }
.hero-image-inner img { position: relative; width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.hero-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-radius: 14px; padding: 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 1rem;
}
.hero-card-badge { width: 48px; height: 48px; background: var(--navy); border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-weight: 700; font-size: .95rem; }
.hero-card-text p    { color: var(--navy); font-weight: 600; font-size: .9rem; margin: 0; }
.hero-card-text span { color: var(--muted); font-size: .8rem; }

/* ─── EXPERTISES PREVIEW ─── */
.expertise-preview { background: var(--cream); padding: 6rem 1.5rem; }
.expertise-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); } }
.expertise-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); transition: var(--ease-slow); }
.expertise-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(200,169,110,.3); transform: translateY(-2px); }
.expertise-card-icon { width: 56px; height: 56px; background: rgba(27,42,74,.05); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: var(--ease); }
.expertise-card:hover .expertise-card-icon { background: rgba(200,169,110,.12); }
.expertise-card-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--navy); stroke-width: 2; transition: var(--ease); }
.expertise-card:hover .expertise-card-icon svg { stroke: var(--gold); }
.expertise-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.expertise-card p  { font-size: .875rem; }
.expertise-card-more {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border-radius: var(--radius); border: 2px dashed rgba(200,169,110,.35);
  padding: 2rem; min-height: 180px; transition: var(--ease); color: var(--navy);
}
.expertise-card-more:hover { border-color: var(--gold); background: rgba(200,169,110,.04); }
.expertise-card-more svg { width: 32px; height: 32px; fill: none; stroke: var(--gold); stroke-width: 2; margin-bottom: .75rem; transition: transform .3s; }
.expertise-card-more:hover svg { transform: translateX(4px); }
.expertise-card-more span { font-weight: 600; font-size: .9375rem; }

/* ─── VALUES ─── */
.values-section { background: var(--white); padding: 6rem 1.5rem; }
.values-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .values-inner { grid-template-columns: 1fr 1fr; } }
.values-left p { margin: 1.5rem 0 2rem; }
.values-inner h2 { margin-bottom: 1.5rem; }
.values-inner > div > p { margin-top: 1.25rem; }
.values-image { margin-top: 2rem; }
.values-image img { border-radius: var(--radius); width: 100%; height: 300px; object-fit: cover; box-shadow: var(--shadow); }
.values-list { display: flex; flex-direction: column; gap: .25rem; }
.value-item { display: flex; gap: 1.25rem; padding: 1.5rem; border-radius: var(--radius); transition: background .3s; }
.value-item:hover { background: var(--cream); }
.value-icon { width: 48px; height: 48px; background: rgba(200,169,110,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }
.value-item h3 { font-size: .9375rem; margin-bottom: .25rem; }
.value-item p  { font-size: .875rem; }

/* ─── ARTICLES PREVIEW ─── */
.articles-preview { background: var(--cream); padding: 6rem 1.5rem; }
.articles-preview-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .articles-preview-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.see-all { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; color: var(--navy); transition: color .2s; white-space: nowrap; min-height: 44px; }
.see-all:hover { color: var(--gold); }
.see-all svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.see-all:hover svg { transform: translateX(3px); }

/* ─── ARTICLE CARD ─── */
.articles-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 640px)  { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

.article-item { height: 100%; }
.article-card { display: flex; flex-direction: column; height: 100%; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: box-shadow .5s, border-color .5s, transform .3s; }
.article-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(200,169,110,.3); transform: translateY(-3px); }
.article-thumb { position: relative; height: 208px; overflow: hidden; flex-shrink: 0; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.article-card:hover .article-thumb img { transform: scale(1.05); }

/* Badge catégorie en overlay */
.article-cat-badge { position: absolute; top: 1rem; left: 1rem; font-size: .75rem; font-weight: 600; padding: .375rem .875rem; border-radius: 999px; line-height: 1; }
.cat-divorce            { background: var(--cat-divorce-bg);    color: var(--cat-divorce-fg); }
.cat-enfant,
.cat-enfants,
.cat-garde-enfants,
.cat-garde_enfants      { background: var(--cat-garde-bg);      color: var(--cat-garde-fg); }
.cat-famille            { background: var(--cat-mediation-bg);  color: var(--cat-mediation-fg); }
.cat-pension-alimentaire,
.cat-pension_alimentaire{ background: var(--cat-pension-bg);    color: var(--cat-pension-fg); }
.cat-adoption           { background: var(--cat-adoption-bg);   color: var(--cat-adoption-fg); }
.cat-succession         { background: var(--cat-succession-bg); color: var(--cat-succession-fg); }
.cat-mediation,
.cat-mediation          { background: var(--cat-mediation-bg);  color: var(--cat-mediation-fg); }
.cat-banque             { background: var(--cat-banque-bg);     color: var(--cat-banque-fg); }
.cat-huissier           { background: var(--cat-huissier-bg);   color: var(--cat-huissier-fg); }
.cat-penal              { background: var(--cat-penal-bg);      color: var(--cat-penal-fg); }
.cat-default            { background: var(--cat-default-bg);    color: var(--cat-default-fg); backdrop-filter: blur(4px); }

.article-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.article-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s; }
.article-card:hover .article-title { color: var(--gold-2); }
.article-excerpt { font-size: .875rem; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid #F9FAFB; margin-top: auto; }
.article-reading-time { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: var(--muted-light); }
.article-reading-time svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.article-read-more { display: flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 500; color: var(--gold); margin-left: auto; transition: gap .2s; }
.article-card:hover .article-read-more { gap: .5rem; }
.article-read-more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ─── CTA SECTION ─── */
.cta-section { position: relative; background: var(--navy); text-align: center; padding: 6rem 1.5rem; overflow: hidden; }
.cta-section::before, .cta-section::after { content: ''; position: absolute; width: 400px; height: 400px; background: var(--gold); border-radius: 999px; opacity: .04; pointer-events: none; }
.cta-section::before { top: -200px; left: -200px; }
.cta-section::after  { bottom: -200px; right: -200px; }
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-section h2 { color: var(--white); font-weight: 400; margin-bottom: 1.5rem; }
.cta-section h2 strong { font-weight: 700; color: var(--gold); }
.cta-section p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── EXPERTISES FULL ─── */
.expertises-list { background: var(--cream); padding: 5rem 1.5rem; }
.expertise-row { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 1.5rem; transition: var(--ease-slow); }
.expertise-row:last-child { margin-bottom: 0; }
.expertise-row:hover { box-shadow: var(--shadow-lg); }
.expertise-row-icon { width: 64px; height: 64px; border-radius: var(--radius-sm); background: rgba(27,42,74,.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--ease); }
.expertise-row:hover .expertise-row-icon { background: rgba(200,169,110,.12); }
.expertise-row-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--navy); stroke-width: 2; transition: var(--ease); }
.expertise-row:hover .expertise-row-icon svg { stroke: var(--gold); }
.expertise-row-body { flex: 1; }
.expertise-row-body h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.expertise-row-body p  { margin-bottom: 1.25rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { padding: .375rem .875rem; background: var(--cream); color: var(--navy); border-radius: 999px; font-size: .8rem; border: 1px solid var(--border); }

/* ─── A PROPOS ─── */
.bio-section { background: var(--white); padding: 5rem 1.5rem; }
.bio-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .bio-inner { grid-template-columns: 1fr 1fr; } }
.bio-image-wrap { position: relative; }
.bio-image-glow { position: absolute; inset: -1rem; background: rgba(200,169,110,.08); border-radius: var(--radius-xl); }
.bio-image-wrap img { position: relative; width: 100%; height: 480px; object-fit: cover; object-position: center 15%; border-radius: var(--radius); box-shadow: var(--shadow); }
.bio-text h2 { margin-bottom: 1.5rem; }
.bio-text p  { margin-bottom: 1rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.badge-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; background: var(--cream); border-radius: 999px; font-size: .8rem; color: var(--navy); }
.badge-pill svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; }

.stats-band { background: var(--navy); padding: 4rem 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { display: block; font-size: 2.5rem; font-weight: 700; color: var(--gold); margin-bottom: .25rem; }
.stat-label { color: rgba(255,255,255,.55); font-size: .85rem; }

.timeline-section { background: var(--cream); padding: 5rem 1.5rem; }
.timeline-wrap { max-width: 720px; margin: 3rem auto 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-axis { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 48px; height: 48px; border-radius: 999px; background: var(--gold); color: var(--white); font-weight: 700; font-size: .78rem; display: flex; align-items: center; justify-content: center; }
.timeline-line { flex: 1; width: 2px; background: rgba(200,169,110,.2); margin-top: .5rem; }
.timeline-box { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); flex: 1; margin-top: .25rem; }
.timeline-box h3 { font-size: 1rem; margin-bottom: .375rem; }
.timeline-box p  { font-size: .875rem; margin: 0; }

/* ─── ARTICLES PAGE ─── */
.category-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: .875rem 1.5rem; position: sticky; top: var(--nav-height); z-index: 50; }
.category-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.category-bar-inner::-webkit-scrollbar { display: none; }
.filter-btn { flex-shrink: 0; padding: .35rem .9rem; border-radius: 999px; font-size: .85rem; font-weight: 500; border: none; background: var(--bg-light); color: var(--muted); transition: var(--ease); min-height: auto; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); }
@media (max-width: 767px) { .filter-btn { min-height: 44px; padding: .45rem 1.1rem; } }
.articles-section { background: var(--cream); padding: 4rem 1.5rem; min-height: 60vh; }

/* ─── ARTICLE SINGLE ─── */
.single-cover { position: relative; height: 288px; overflow: hidden; }
@media (min-width: 768px) { .single-cover { height: 384px; } }
.single-cover img { width: 100%; height: 100%; object-fit: cover; }
.single-cover-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,42,74,.8) 0%, rgba(27,42,74,.3) 50%, transparent 100%); }
.single-cover-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; max-width: 860px; margin: 0 auto; }
.cat-badge-gold { display: inline-flex; align-items: center; gap: .35rem; background: var(--gold); color: var(--navy); font-size: .75rem; font-weight: 700; padding: .35rem 1rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.cat-badge-gold svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
.reading-badge { display: inline-flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.7); font-size: .75rem; margin-left: .75rem; }
.reading-badge svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
.single-cover-meta h1 { color: var(--white); font-size: clamp(1.5rem,4vw,2.5rem); font-weight: 600; line-height: 1.2; margin-top: .75rem; }

.single-content-section { background: var(--cream); padding: 4rem 1.5rem; }
.single-content-wrap { max-width: 760px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .875rem; margin-bottom: 2.5rem; transition: color .2s; min-height: 44px; }
.back-link:hover { color: var(--navy); }
.back-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.article-card-content { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.04); }
@media (min-width: 768px) { .article-card-content { padding: 3rem; } }
.article-excerpt-lead { font-size: 1.1rem; color: #374151; font-weight: 500; line-height: 1.7; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.entry-content h2 { font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 1.75rem 0 .75rem; }
.entry-content p  { margin-bottom: 1.25rem; line-height: 1.8; color: var(--muted); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: .5rem; color: var(--muted); }
.entry-content a  { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.entry-content strong { color: var(--navy); }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(200,169,110,.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }
.article-cta-box { margin-top: 2.5rem; background: var(--navy); border-radius: var(--radius); padding: 2rem; text-align: center; }
.article-cta-box h3 { color: var(--white); font-weight: 600; font-size: 1.25rem; margin-bottom: .75rem; }
.article-cta-box p  { color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: 1.5rem; }
.article-cta-box .btn-primary { font-size: .9rem; padding: .75rem 2rem; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-nav a { font-size: .875rem; font-weight: 500; color: var(--navy); transition: color .2s; display: flex; align-items: center; gap: .4rem; min-height: 44px; max-width: 45%; }
.post-nav a:hover { color: var(--gold-2); }
.post-nav a:last-child { margin-left: auto; text-align: right; }

/* ─── CONTACT ─── */
.contact-section { background: var(--cream); padding: 5rem 1.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-info-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 1rem; }
.contact-info-card:last-of-type { margin-bottom: 0; }
.info-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(200,169,110,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }
.info-card-text h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.info-card-text p  { font-size: .85rem; margin: 0; }
.info-card-text a  { color: var(--muted); transition: color .2s; }
.info-card-text a:hover { color: var(--gold); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 1rem; }
.contact-map iframe { display: block; width: 100%; height: 220px; }
.contact-form-box { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-box h2 { font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.contact-form-box > p { font-size: .9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .875rem; font-weight: 600; color: var(--navy); }
.form-input { padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; color: var(--text); background: var(--white); width: 100%; transition: border-color .2s, box-shadow .2s; min-height: 44px; }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,.15); }
textarea.form-input { min-height: 150px; resize: vertical; }
.form-submit { width: 100%; height: 56px; font-size: 1rem; margin-top: 1.5rem; }
.form-note { font-size: .75rem; color: var(--muted-light); text-align: center; margin-top: 1rem; }
.form-error { color: #EF4444; font-size: .875rem; margin-top: .75rem; display: none; }
.form-success { display: none; text-align: center; padding: 4rem 2rem; }
.form-success.show { display: block; }
.form-success-icon { width: 72px; height: 72px; background: #F0FDF4; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success-icon svg { width: 36px; height: 36px; fill: none; stroke: #22C55E; stroke-width: 2; }
.form-success h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: .75rem; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 5rem 1.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo .logo-icon { background: rgba(255,255,255,.1); }
.footer-logo .logo-name { color: var(--white); }
.footer-brand p { font-size: .875rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .95rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-col a  { display: block; font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 0; transition: color .2s; min-height: auto; line-height: 1.8; padding: .15rem 0; }
@media (max-width: 767px) { .footer-col a { min-height: 44px; line-height: 44px; padding: 0; } }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin: 0; padding: 0; }
.footer-col ul li::before { display: none; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: .875rem; line-height: 1.7; margin-bottom: .6rem; }
.footer-bottom { max-width: 1280px; margin: 3rem auto 0; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.35); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.35); transition: color .2s; min-height: 44px; line-height: 44px; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ─── UTILITAIRES ─── */
.breadcrumb { margin-bottom: .5rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .25rem .4rem; list-style: none; font-size: .78rem; color: rgba(255,255,255,.45); }
.breadcrumb a  { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .5; }

.pagination { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 3rem; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; border: 1.5px solid var(--border); color: var(--navy); transition: var(--ease); text-decoration: none; }
.page-numbers:hover, .page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-numbers.dots { border: none; color: var(--muted); width: auto; padding: 0 .5rem; }

.skip-link { position: absolute; top: -100px; left: 1rem; z-index: 9999; background: var(--gold); color: var(--navy); padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600; font-size: .875rem; transition: top .2s; }
.skip-link:focus { top: 0; }

.generic-content { background: var(--cream); padding: 4rem 1.5rem; }
.generic-content .prose-box { max-width: 860px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 3rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.entry-content h2 { font-size: 1.5rem; font-weight: 600; color: var(--navy); margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 1.75rem 0 .75rem; }
.entry-content p  { margin-bottom: 1.25rem; line-height: 1.8; color: var(--muted); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: .5rem; color: var(--muted); }
.entry-content a  { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.entry-content strong { color: var(--navy); }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(200,169,110,.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 479px) {
  :root { --nav-height: 68px; }
  .nav-inner { height: 68px; }
  .hero, .expertise-preview, .values-section, .articles-preview,
  .cta-section, .expertises-list, .bio-section, .stats-band,
  .timeline-section, .contact-section, .articles-section, .page-hero { padding-left: 1rem; padding-right: 1rem; }
  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }
  .expertise-row { flex-direction: column; padding: 1.25rem; }
  .bio-image-wrap img { height: 280px; }
  .timeline-dot { width: 40px; height: 40px; font-size: .7rem; }
  .article-thumb { height: 180px; }
  .contact-form-box { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr !important; }
  .single-cover { height: 240px; }
  .article-card-content { padding: 1.25rem; }
}
@media (min-width: 480px) and (max-width: 639px) {
  .hero { min-height: auto; }
  .expertise-row { flex-direction: column; padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr !important; }
  .bio-image-wrap img { height: 340px; }
}
@media (max-width: 767px) {
  .hero { min-height: auto; }
  .hero-image { display: none; }
  .expertise-grid, .articles-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid, .bio-inner, .values-inner, .contact-grid { grid-template-columns: 1fr; }
  .values-image { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 340px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .post-nav a { max-width: 100%; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .articles-grid, .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .expertise-row { flex-direction: column; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-content p, .hero-buttons { justify-content: center; }
  .hero-image, .values-image { display: none; }
  .bio-inner { grid-template-columns: 1fr; }
  .bio-image-wrap { max-width: 480px; margin: 0 auto; }
  .bio-image-wrap img { height: 360px; }
  .contact-grid, .values-inner { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .hero-image, .values-image { display: block; }
  .hero-inner { text-align: left; }
  .bio-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 2fr; }
  .values-inner { grid-template-columns: 1fr 1fr; }
  .expertise-row { flex-direction: row; }
}
@media (hover: none) {
  .expertise-card:hover, .article-card:hover, .expertise-row:hover, .value-item:hover { transform: none; box-shadow: none; }
  .article-card:hover .article-thumb img { transform: none; }
  .expertise-card:hover .expertise-card-icon { background: rgba(27,42,74,.05); }
  .expertise-card:hover .expertise-card-icon svg { stroke: var(--navy); }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
@media print {
  .site-header, .top-bar, .mobile-menu, .cta-section, .nav-toggle, .breadcrumb, .category-bar, .site-footer, .post-nav { display: none !important; }
  body { font-size: 12pt; color: #000; }
  h1, h2, h3 { color: #000; }
  .hero { background: none !important; min-height: auto; padding: 2rem 0; }
  .hero-content h1, .hero-content p { color: #000; }
  .article-card-content { box-shadow: none; border: none; padding: 0; }
}

/* ─── Aliases de compatibilité (header / footer) ─── */
.nav-links li a.current-menu-item { background: var(--navy); color: var(--white); }
.footer-grid .container { max-width: 1280px; margin: 0 auto; }

/* back-link arrow: flip the arrow-right SVG to point left */
.back-link svg { transform: rotate(180deg); }

/* single-cover: hero image loading eager  */
.single-cover img { object-fit: cover; width: 100%; height: 100%; }


/* ─── Backward-compat: article card classes (used in index.php / functions) ─── */
.article-card-thumb       { position: relative; height: 208px; overflow: hidden; }
.article-card-thumb img   { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-card:hover .article-card-thumb img { transform: scale(1.05); }
.article-card-body        { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.article-card-cat         {
  display: inline-block;
  background: var(--bg-light); color: var(--navy);
  font-size: .75rem; font-weight: 600;
  padding: .35rem .875rem; border-radius: 999px;
  align-self: flex-start;
}
.article-card-excerpt     { font-size: .875rem; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card-meta        { font-size: .78rem; color: var(--muted-light); margin-top: auto; }

/* articles-full = alias of articles-section */
.articles-full            { background: var(--cream); padding: 4rem 1.5rem; min-height: 60vh; }

/* skip-to-content (header uses skip-link class in CSS, skip-to-content in HTML) */
.skip-to-content          { position: absolute; top: -100px; left: 1rem; z-index: 9999; background: var(--gold); color: var(--navy); padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600; font-size: .875rem; transition: top .2s; }
.skip-to-content:focus    { top: 0; }

/* WP admin table classes (contacts page) */
.widefat  { width: 100%; border-collapse: collapse; }
.striped tr:nth-child(even) { background: var(--bg-light); }
.wrap     { margin: 1rem; }

/* ═══ CLASS ALIASES — align PHP templates with CSS ═══════════
   The PHP templates use descriptive prefixed names.
   These rules map them to the core CSS definitions.
   ═══════════════════════════════════════════════════════════ */

/* À propos — bio section */
.apropos-bio              { background: var(--white); padding: 5rem 1.5rem; }
.apropos-bio-inner        { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .apropos-bio-inner { grid-template-columns: 1fr 1fr; } }
.apropos-bio-image-wrap   { position: relative; }
.apropos-bio-image-glow   { position: absolute; inset: -1rem; background: rgba(200,169,110,.08); border-radius: var(--radius-xl, 24px); }
.apropos-bio-image-wrap img { position: relative; width: 100%; height: 480px; object-fit: cover; object-position: center 15%; border-radius: var(--r, 16px); box-shadow: var(--shadow); }
.apropos-bio-text h2      { margin-bottom: 1.5rem; }
.apropos-bio-text p       { margin-bottom: 1rem; }
@media (max-width: 479px)  { .apropos-bio-image-wrap img { height: 280px; } }
@media (min-width: 480px) and (max-width: 639px) { .apropos-bio-image-wrap img { height: 340px; } }
@media (min-width: 768px) and (max-width: 1023px) { .apropos-bio-inner { grid-template-columns: 1fr; } .apropos-bio-image-wrap { max-width: 480px; margin: 0 auto; } .apropos-bio-image-wrap img { height: 360px; } }
@media (max-width: 767px)  { .apropos-bio-inner { grid-template-columns: 1fr; } }

/* Badge pills (À propos) */
.badges-row      { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.badge           { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; background: var(--cream); border-radius: 999px; font-size: .8rem; color: var(--navy); }
.badge svg       { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }

/* Stats */
.stat-val        { display: block; font-size: 2.5rem; font-weight: 700; color: var(--gold); margin-bottom: .25rem; }
.stat-label      { color: rgba(255,255,255,.55); font-size: .85rem; }

/* Parcours timeline */
.parcours-section{ background: var(--cream); padding: 5rem 1.5rem; }
.timeline        { max-width: 720px; margin: 3rem auto 0; }
.timeline-item   { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-left   { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot    { width: 48px; height: 48px; border-radius: 999px; background: var(--gold); color: var(--white); font-weight: 700; font-size: .78rem; display: flex; align-items: center; justify-content: center; z-index: 1; }
.timeline-line   { flex: 1; width: 2px; background: rgba(200,169,110,.2); margin-top: .5rem; }
.timeline-content { background: var(--white); border-radius: var(--r, 16px); padding: 1.5rem; border: 1px solid var(--border); flex: 1; margin-top: .25rem; }
.timeline-content h3 { font-size: 1rem; margin-bottom: .375rem; }
.timeline-content p  { font-size: .875rem; margin: 0; }
@media (max-width: 479px) { .timeline-dot { width: 40px; height: 40px; font-size: .7rem; } }

/* Expertise full-page cards */
.expertises-list          { background: var(--cream); padding: 5rem 1.5rem; }
.expertise-full-card      { display: flex; gap: 2rem; align-items: flex-start; background: var(--white); border-radius: var(--r, 16px); padding: 2.5rem; border: 1px solid var(--border); margin-bottom: 1.5rem; transition: var(--ease-slow); }
.expertise-full-card:last-child { margin-bottom: 0; }
.expertise-full-card:hover { box-shadow: var(--shadow-lg); }
.expertise-full-icon      { width: 64px; height: 64px; border-radius: var(--r-sm, 8px); background: rgba(27,42,74,.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--ease); }
.expertise-full-card:hover .expertise-full-icon { background: rgba(200,169,110,.12); }
.expertise-full-icon svg  { width: 28px; height: 28px; fill: none; stroke: var(--navy); stroke-width: 2; transition: var(--ease); }
.expertise-full-card:hover .expertise-full-icon svg { stroke: var(--gold); }
.expertise-full-body      { flex: 1; }
.expertise-full-body h3   { font-size: 1.25rem; margin-bottom: .75rem; }
.expertise-full-body p    { margin-bottom: 1.25rem; }
.expertise-tags           { display: flex; flex-wrap: wrap; gap: .5rem; }
.expertise-tag            { padding: .375rem .875rem; background: var(--cream); color: var(--navy); border-radius: 999px; font-size: .8rem; border: 1px solid var(--border); }
@media (max-width: 639px)  { .expertise-full-card { flex-direction: column; padding: 1.5rem; } }
@media (min-width: 640px) and (max-width: 1023px) { .expertise-full-card { flex-direction: column; } }
@media (min-width: 1024px) { .expertise-full-card { flex-direction: row; } }
@media (hover: none) { .expertise-full-card:hover .expertise-full-icon { background: rgba(27,42,74,.05); } .expertise-full-card:hover .expertise-full-icon svg { stroke: var(--navy); } }

/* Contact info icon */
.contact-info-icon     { width: 44px; height: 44px; border-radius: var(--r-sm, 8px); background: rgba(200,169,110,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }

/* Contact form wrapper */
.contact-form-wrap         { background: var(--white); border-radius: var(--r, 16px); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-wrap h2      { font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.contact-form-wrap > p     { font-size: .9rem; margin-bottom: 2rem; }
@media (max-width: 479px)  { .contact-form-wrap { padding: 1.25rem; } }
@media (max-width: 767px)  { .contact-form-wrap { padding: 1.5rem; } }

/* Form elements */
.form-grid-2               { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group                { display: flex; flex-direction: column; gap: .4rem; }
.form-group label          { font-size: .875rem; font-weight: 600; color: var(--navy); }
.form-control              { padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm, 8px); font-size: .9rem; color: var(--text); background: var(--white); width: 100%; transition: border-color .2s, box-shadow .2s; min-height: 44px; }
.form-control:focus        { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,.15); }
textarea.form-control      { min-height: 150px; resize: vertical; }

/* Success icon */
.success-icon      { width: 72px; height: 72px; background: #F0FDF4; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon svg  { width: 36px; height: 36px; fill: none; stroke: #22C55E; stroke-width: 2; }

/* dupont_page_url helper is missing — fix will be in functions.php */
