/* ==========================================
   ZINE AVOCATS — Corporate Elegant Theme
   Design: Premium law firm, navy + gold
   ========================================== */

:root {
  /* Palette */
  --navy:       #0f1a2e;
  --navy-light: #1a2b47;
  --navy-mid:   #243656;
  --gold:       #b89a5a;
  --gold-light: #d4b877;
  --gold-pale:  #f5eed9;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --gray-100:   #f0eeeb;
  --gray-200:   #e2dfd9;
  --gray-400:   #a09a90;
  --gray-600:   #6b645a;
  --gray-800:   #3a3530;
  --text:       #2a2520;
  --text-light: #6b645a;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Spacing (base 8) */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --radius:    4px;
  --radius-lg: 8px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

/* ========== RESET & BASE ========== */
*, *::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-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }
::selection { background: var(--gold-pale); color: var(--navy); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ========== REVEAL ANIMATIONS ========== */
.expertise-card,
.avantage-card,
.process-step,
.tarif-card,
.article-card,
.stat,
.faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}
.expertise-card:nth-child(2),
.avantage-card:nth-child(2),
.tarif-card:nth-child(2),
.process-step:nth-child(2),
.article-card:nth-child(2),
.stat:nth-child(2) { transition-delay: 0.1s; }
.expertise-card:nth-child(3),
.avantage-card:nth-child(3),
.tarif-card:nth-child(3),
.process-step:nth-child(3),
.article-card:nth-child(3),
.stat:nth-child(3) { transition-delay: 0.2s; }
.expertise-card:nth-child(4),
.avantage-card:nth-child(4),
.process-step:nth-child(4),
.stat:nth-child(4) { transition-delay: 0.3s; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }
h1 em, h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}
.section-intro {
  color: var(--text-light);
  margin-top: var(--space-md);
  font-size: 1.05rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--gold-light); }
.btn-full { width: 100%; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo { display: flex; align-items: center; position: relative; z-index: 10; }
.logo img { height: 45px; width: auto; }
.logo-dark { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-list a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.02em;
  transition: color var(--duration);
  position: relative;
}
.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.nav-list a:not(.btn):hover { color: var(--white); }
.nav-list a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,154,90,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(26,43,71,.8) 0%, transparent 70%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23b89a5a' fill-opacity='0.03'%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-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,154,90,.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: var(--space-xl);
}
.hero h1 { color: var(--white); margin-bottom: var(--space-lg); }
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}
.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}
.hero-locations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.hero-locations span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.05em;
}
.hero-locations span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: var(--space-sm);
  vertical-align: middle;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.3);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== STATS ========== */
.stats {
  background: var(--navy-light);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(184,154,90,.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin-top: var(--space-xs);
  display: block;
}

/* ========== EXPERTISES ========== */
.expertises {
  padding: var(--space-5xl) 0;
  background: var(--white);
}
.expertises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.expertise-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease);
}
.expertise-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(15,26,46,.08);
  transform: translateY(-2px);
}
.expertise-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
}
.expertise-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}
.expertise-card h3 {
  margin-bottom: var(--space-md);
}
.expertise-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.expertise-tags li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy-mid);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ========== CABINET / À PROPOS ========== */
.cabinet {
  padding: var(--space-5xl) 0;
  background: var(--off-white);
}
.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}
.cabinet-visual {
  position: relative;
}
.cabinet-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 420px;
}
.cabinet-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,154,90,.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.cabinet-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cabinet-nameplate {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: calc(-1 * var(--space-2xl));
  position: relative;
  z-index: 2;
  max-width: 320px;
  margin-left: var(--space-xl);
}
.cabinet-nameplate strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}
.cabinet-nameplate span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}

.cabinet-text h2 { margin-bottom: var(--space-xl); }
.cabinet-text p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 1.02rem;
}

blockquote {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-xl);
  margin-top: var(--space-2xl);
}
blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gold);
  margin-top: var(--space-md);
}

/* ========== AVANTAGES / ENGAGEMENTS ========== */
.avantages {
  padding: var(--space-5xl) 0;
  background: var(--white);
}
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.avantage-card {
  padding: var(--space-2xl) var(--space-lg);
  border-top: 3px solid var(--gray-200);
  transition: border-color var(--duration) var(--ease);
}
.avantage-card:hover { border-top-color: var(--gold); }
.avantage-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--space-lg);
}
.avantage-card h3 { margin-bottom: var(--space-md); }
.avantage-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== PROCESSUS ========== */
.process {
  padding: var(--space-5xl) 0;
  background: var(--navy);
}
.process .section-label { color: var(--gold); }
.process .section-header h2 { color: var(--white); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: rgba(184,154,90,.25);
}
.process-step {
  text-align: center;
  position: relative;
}
.process-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 2;
}
.process-step h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}
.process-step p {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
}

/* ========== TARIFS ========== */
.tarifs {
  padding: var(--space-5xl) 0;
  background: var(--off-white);
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.tarif-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.tarif-card:hover {
  box-shadow: 0 12px 40px rgba(15,26,46,.08);
  transform: translateY(-2px);
}
.tarif-featured {
  border-color: var(--gold);
  position: relative;
}
.tarif-featured::before {
  content: 'Populaire';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.tarif-header {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
}
.tarif-header h3 { font-size: 1.3rem; }
.tarif-for {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: var(--space-xs);
  display: block;
}
.tarif-body {
  padding: var(--space-xl);
}
.tarif-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}
.tarif-body ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.tarif-body li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.tarif-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.tarifs-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: var(--space-2xl);
}

/* ========== ACTUALITÉS ========== */
.actualites {
  padding: var(--space-5xl) 0;
  background: var(--white);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.article-card {
  padding: var(--space-2xl);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
}
.article-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(15,26,46,.06);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.article-meta time {
  font-size: 0.8rem;
  color: var(--text-light);
}
.article-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
}
.article-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}
.article-card h3 a {
  transition: color var(--duration);
}
.article-card h3 a:hover { color: var(--gold); }
.article-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== FAQ ========== */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--off-white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  padding: var(--space-xl) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--duration);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-answer {
  padding-bottom: var(--space-xl);
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== CONTACT CTA ========== */
.contact-cta {
  padding: var(--space-5xl) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.contact-info h2 { margin-bottom: var(--space-lg); }
.contact-info > p {
  color: var(--text-light);
  margin-bottom: var(--space-2xl);
  font-size: 1.02rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.contact-detail svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-detail a,
.contact-detail span,
.contact-detail address {
  font-size: 0.95rem;
  color: var(--text-light);
}
.contact-detail a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: var(--space-md);
}
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--duration);
}
.contact-social a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Form */
.contact-form {
  background: var(--off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--duration);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.form-legal {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: var(--space-md);
  text-align: center;
}

/* ========== MAP ========== */
.map-section {
  height: 400px;
  background: var(--gray-100);
}
.map-section iframe {
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-4xl);
  padding: var(--space-4xl) var(--space-lg);
}
.footer-brand img { margin-bottom: var(--space-lg); height: 40px; width: auto; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-nav a {
  font-size: 0.9rem;
  transition: color var(--duration);
}
.footer-nav a:hover { color: var(--gold); }
.footer-nav li:not(:has(a)) { font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  gap: var(--space-lg);
}
.footer-legal a:hover { color: var(--gold); }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .expertises-grid { grid-template-columns: repeat(2, 1fr); }
  .avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .articles-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .cabinet-grid { grid-template-columns: 1fr; text-align: center; }
  .cabinet-visual { display: flex; flex-direction: column; align-items: center; }
  .cabinet-nameplate { margin-left: 0; }
  .cabinet-text { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(15,26,46,.98);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration);
    z-index: 5;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; }
  .nav-list {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }
  .nav-list a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 7rem 0 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .expertises-grid { grid-template-columns: 1fr; }
  .avantages-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: var(--space-md); text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  h1 { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .expertise-card { padding: var(--space-xl); }
  .tarif-card { margin: 0; }
  .contact-form { padding: var(--space-xl) var(--space-md); }
  .cabinet-portrait { max-width: 300px; }
}

/* Print */
@media print {
  .site-header, .hero-scroll, .nav-toggle, .contact-form, .map-section { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { color: #000; font-size: 12pt; }
  a { text-decoration: underline; }
}
