/*
Theme Name: Abderhim Avocat
Version: 2.0.0
*/

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0f1f3d;
  --gold:    #c8a96e;
  --gold2:   #e8c98a;
  --white:   #ffffff;
  --off:     #f8f7f4;
  --text:    #1a1a2e;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --radius:  12px;
  --font-s:  'Inter', system-ui, sans-serif;
  --font-d:  'Playfair Display', Georgia, serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-s); color: var(--text); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}

/* Filigrane château de Chantilly — toutes les pages */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: url('chantilly-bg.jpg') center 40% / cover no-repeat;
  opacity: .30;
  pointer-events: none;
}
/* Les sections récupèrent le z-index au-dessus du filigrane */
.site-header, .site-footer, .hero, .section, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,31,61,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.site-header.scrolled {
  background: rgba(15,31,61,.98);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.1rem; color: var(--navy); font-weight: 600;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-size: .9rem; font-weight: 600; color: var(--white); letter-spacing: .3px; }
.logo-sub  { font-size: .68rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 400; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 400;
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav .cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 600; padding: 9px 20px; margin-left: 8px;
  border-radius: 8px; font-size: .85rem;
  transition: background .2s, transform .15s !important;
}
.nav .cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }

/* mobile */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(15,31,61,.78) 0%, rgba(15,31,61,.72) 100%),
    url('chantilly-bg.jpg') center 40% / cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}

/* Ambient gradient orbs */
.hero::before, .hero::after {
  content: '';
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .18;
  pointer-events: none;
}
.hero::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #c8a96e 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3b5998 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 480px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-s); font-size: .88rem; font-weight: 600;
  padding: 14px 28px; border-radius: 10px; cursor: pointer;
  transition: all .2s; letter-spacing: .2px;
}
.btn-primary { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); }
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,.35); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.8); border: 2px solid rgba(255,255,255,.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-value { font-family: var(--font-d); font-size: 2rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .5px; }

/* Hero card (photo) */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-card-photo {
  height: 360px; overflow: hidden;
  background: linear-gradient(160deg, #1a3060, #0f1f3d);
}
.hero-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(.95); }
.hero-card-body { padding: 24px; }
.hero-card-name { font-family: var(--font-d); font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.hero-card-title { font-size: .78rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .7rem; padding: 4px 10px;
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 6px; color: rgba(255,255,255,.55);
}

/* ── Domains ── */
.section { padding: 100px 40px; }
.section.bg-off { background: var(--off); }
.section.bg-navy { background: var(--navy); }

.container { max-width: 1100px; margin: 0 auto; }

.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label-tag::before { content: '—'; font-weight: 300; }

.section-heading {
  font-family: var(--font-d); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.section-heading.light { color: var(--white); }

.section-sub { font-size: 1rem; color: var(--muted); max-width: 500px; margin-bottom: 56px; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,.55); }

.domains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.domain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}
.domain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.domain-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.domain-card:hover::before { transform: scaleX(1); }

.domain-num { font-family: var(--font-d); font-size: 2.5rem; color: var(--border); font-weight: 400; margin-bottom: 16px; line-height: 1; }
.domain-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.domain-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.domain-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--gold); margin-top: 20px;
  transition: gap .2s;
}
.domain-card:hover .domain-link { gap: 10px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4; max-height: 520px;
  background: linear-gradient(160deg, #1a3060, #0f1f3d);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: 14px;
  padding: 20px 24px; box-shadow: 0 16px 48px rgba(0,0,0,.12);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 140px;
}
.about-badge-num { font-family: var(--font-d); font-size: 2.2rem; color: var(--navy); line-height: 1; }
.about-badge-text { font-size: .72rem; color: var(--muted); text-align: center; letter-spacing: .5px; }

.about-content .label-tag { margin-bottom: 16px; }

.about-heading { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 20px; line-height: 1.25; }
.about-text { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.formation-list { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.formation-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: var(--off); border-radius: 10px;
}
.formation-dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.formation-title { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.formation-sub { font-size: .78rem; color: var(--muted); }

.aide-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.3);
  border-radius: 8px; padding: 10px 16px; margin-top: 24px;
  font-size: .82rem; color: var(--navy); font-weight: 500;
}
.aide-pill::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── Tarifs ── */
.fees-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.fee-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 28px 20px; text-align: center;
  transition: background .2s, transform .2s;
}
.fee-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.fee-card.highlight {
  background: var(--gold); border-color: var(--gold);
}
.fee-label { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.fee-card.highlight .fee-label { color: rgba(15,31,61,.7); }
.fee-price { font-family: var(--font-d); font-size: 2.4rem; color: var(--white); line-height: 1; }
.fee-card.highlight .fee-price { color: var(--navy); }
.fee-sup { font-size: 1rem; vertical-align: super; }
.fee-detail { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 8px; }
.fee-card.highlight .fee-detail { color: rgba(15,31,61,.6); }

.aid-note {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; text-align: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.aid-note strong { color: var(--gold); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; margin-top: 48px; }

.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--off); border-radius: 12px;
  border: 1px solid var(--border);
}
.info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.info-title { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.info-val { font-size: .9rem; color: var(--navy); font-weight: 500; }
.info-sub { font-size: .8rem; color: var(--muted); margin-top: 2px; }

.rdv-callout {
  padding: 20px; background: var(--navy); border-radius: 12px; color: rgba(255,255,255,.65);
  font-size: .85rem; line-height: 1.6; border-left: 3px solid var(--gold);
}

/* Form */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .75rem; font-weight: 600; color: var(--navy); letter-spacing: .5px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--font-s); font-size: .9rem;
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--white); color: var(--text);
  transition: border-color .2s, box-shadow .2s; width: 100%;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,31,61,.08);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  padding: 14px 32px; background: var(--navy); color: var(--white);
  font-family: var(--font-s); font-size: .9rem; font-weight: 600;
  border: none; border-radius: 10px; cursor: pointer; letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.form-submit:hover { background: #162e55; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(15,31,61,.2); }

/* ── Footer ── */
.site-footer {
  background: #080f1e; padding: 60px 40px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top { max-width: 1100px; margin: 0 auto 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 260px; }

.footer-col h5 { font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .83rem; color: rgba(255,255,255,.45); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .76rem; color: rgba(255,255,255,.25);
}

/* ── Page générique ── */
.page-wrap { max-width: 760px; margin: 120px auto 80px; padding: 0 40px; }
.page-wrap h1 { font-family: var(--font-d); font-size: 2.2rem; color: var(--navy); margin-bottom: 32px; }
.page-wrap h2 { font-family: var(--font-d); font-size: 1.4rem; color: var(--navy); margin: 36px 0 12px; }
.page-wrap p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: .95rem; }
.page-wrap ul { color: var(--muted); padding-left: 20px; margin-bottom: 16px; }
.page-wrap ul li { margin-bottom: 6px; font-size: .95rem; line-height: 1.7; }

/* ── Contact page ── */
.contact-page-section { padding-top: 120px; }
.form-success {
  background: #f0fdf4; border: 1.5px solid #86efac;
  padding: 16px 20px; border-radius: 10px; margin-bottom: 24px;
  font-size: .9rem; color: #166534;
}
.form-success::before { content: '✓ '; font-weight: 700; }

/* ── Domaines page ── */
.domains-page-hero { padding-top: 120px; }
.domain-detail { padding: 80px 40px; }
.domain-detail-inner { display: grid; grid-template-columns: 120px 1fr; gap: 48px; align-items: flex-start; }
.domain-detail-num {
  font-family: var(--font-d); font-size: 5rem; color: var(--border);
  font-weight: 400; line-height: 1; padding-top: 8px;
}
.domain-detail-body h2 {
  font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy); margin-bottom: 16px; line-height: 1.25;
}
.domain-detail-body p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; }
.domain-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.domain-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--muted); line-height: 1.6;
}
.domain-list li::before {
  content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ══════════════════════════════════════
   RESPONSIVE
   1024 → tablette paysage / petit laptop
   768  → tablette portrait
   640  → mobile large
   480  → mobile standard
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .hero-card { width: 360px; }
  .section { padding: 80px 32px; }
  .about-grid { gap: 48px; }
  .domain-detail-inner { gap: 32px; }
  .footer-top { gap: 32px; }
}

/* ── Tablette ── */
@media (max-width: 960px) {
  /* Hero : colonne unique, photo intégrée inline */
  .hero { padding: 100px 32px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { order: 2; }
  .hero-card {
    order: 1; width: 100%; max-width: 480px; margin: 0 auto;
    display: grid; grid-template-columns: 160px 1fr;
    border-radius: 16px;
  }
  .hero-card-photo { height: auto; min-height: 200px; border-radius: 16px 0 0 16px; }
  .hero-card-body { padding: 20px; display: flex; flex-direction: column; justify-content: center; }
  .hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
  .hero-desc { font-size: 1rem; max-width: 100%; }
  .hero-stats { gap: 24px; margin-top: 40px; padding-top: 32px; }

  /* Sections */
  .section { padding: 72px 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 400px; }
  .about-badge { right: 0; bottom: -12px; }

  /* Grids */
  .domains-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .fees-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .rdv-callout { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Pages internes */
  .domain-detail-inner { grid-template-columns: 80px 1fr; gap: 24px; }
  .domain-detail-num { font-size: 3.5rem; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  /* Header */
  .site-header { padding: 0 16px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(8,15,30,.98);
    padding: 24px 20px; overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav.open a {
    font-size: 1.1rem; padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
  }
  .nav.open .cta {
    margin: 16px 0 0; padding: 16px; text-align: center;
    font-size: 1rem; border-radius: 10px;
  }
  .burger { display: flex; }

  /* Hero */
  .hero { padding: 88px 16px 56px; }
  .hero-card {
    grid-template-columns: 120px 1fr;
    max-width: 100%;
  }
  .hero-card-photo { min-height: 160px; }
  .hero-card-name { font-size: .95rem; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-desc { font-size: .95rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 16px; margin-top: 32px; padding-top: 28px; flex-wrap: wrap; }
  .stat-value { font-size: 1.6rem; }

  /* Sections */
  .section { padding: 56px 16px; }
  .section-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-page-section { padding-top: 100px; }
  .domains-page-hero { padding-top: 100px; }

  /* Domaines */
  .domains-grid { grid-template-columns: 1fr; }
  .domain-card { padding: 24px 20px; }

  /* À propos */
  .about-img-wrap { max-width: 100%; }
  .about-img-frame { max-height: 360px; }
  .about-badge { right: 8px; bottom: -10px; min-width: 110px; padding: 14px 16px; }
  .about-badge-num { font-size: 1.6rem; }
  .about-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Tarifs */
  .fees-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fee-card { padding: 20px 14px; }
  .fee-price { font-size: 2.2rem; }

  /* Contact */
  .contact-info-block { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { font-size: 16px; } /* évite le zoom iOS */

  /* Footer */
  .site-footer { padding: 0 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 48px 16px 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px; font-size: .72rem; }

  /* Pages domaines */
  .domain-detail { padding: 56px 16px; }
  .domain-detail-inner { grid-template-columns: 1fr; gap: 16px; }
  .domain-detail-num { font-size: 3rem; line-height: 1; margin-bottom: 0; }
  .domain-detail-body h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Page wrap générique */
  .page-wrap { padding: 100px 16px 56px; }
}

/* ── Très petit mobile ── */
@media (max-width: 480px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-card-photo { height: 200px; border-radius: 16px 16px 0 0; }
  .fees-grid { grid-template-columns: 1fr; }
  .fee-card.highlight { order: -1; }
  .hero-stats { justify-content: space-between; }
}
