/* =========================================================
   SCP CHAUVIN & BASCH — Styles
   Palette : Navy #1B2D5B · Gold #C4963C · Cream #F7F3EE
   ========================================================= */

/* ── Variables ── */
:root {
  --navy:        #1B2D5B;
  --navy-deep:   #0F1C3A;
  --navy-mid:    #243B72;
  --gold:        #C4963C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A07A2A;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE8E0;
  --white:       #FFFFFF;
  --text:        #2C2C2C;
  --text-muted:  #6B6B6B;
  --border:      rgba(196,150,60,0.2);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(15,28,58,0.08);
  --shadow-md:   0 8px 32px rgba(15,28,58,0.14);
  --shadow-lg:   0 20px 60px rgba(15,28,58,0.18);

  --transition:  0.3s ease;
  --container:   1180px;
  --header-h:    80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 100px 0; }
.section--dark  { background: var(--navy-deep); }
.section--cream { background: var(--cream); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__label--light { color: var(--gold-light); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section__title em { font-style: italic; color: var(--gold); }
.section__title--light { color: var(--white); }

.section__desc  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.section__desc--light { color: rgba(255,255,255,0.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,150,60,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(196,150,60,0.12);
  color: var(--gold-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-emblem {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.nav__logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,150,60,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1a3a6b 100%);
}
.hero__overlay {
  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='%23C4963C' 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-top: var(--header-h);
  padding-bottom: 80px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 750px;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero__stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero__scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(196,150,60,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ================================================
   CABINET
   ================================================ */
.cabinet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cabinet__frame {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cabinet__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cabinet__badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}
.cabinet__badge-year { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.cabinet__badge-label { display: block; font-size: 11px; opacity: 0.85; margin-top: 2px; }

.cabinet__deco-line {
  position: absolute;
  background: var(--gold);
  opacity: 0.3;
}
.cabinet__deco-line--top { top: -20px; left: 20px; right: -20px; height: 1px; }
.cabinet__deco-line--left { top: 20px; bottom: -20px; left: -20px; width: 1px; }

.cabinet__content { display: flex; flex-direction: column; gap: 0; }
.cabinet__text { color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; font-size: 1.02rem; }

.cabinet__values { display: flex; flex-direction: column; gap: 20px; margin-top: 12px; }
.cabinet__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.cabinet__value-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cabinet__value strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.cabinet__value p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ================================================
   SERVICES — DOMAINES (liste éditoriale)
   ================================================ */

.domains-header { margin-bottom: 0; }

/* Liste des domaines */
.domains {
  margin-top: 64px;
  border-top: 1px solid rgba(196,150,60,0.2);
}

.domain-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(196,150,60,0.12);
  position: relative;
  transition: background var(--transition);
}
.domain-row::before {
  content: '';
  position: absolute;
  left: -32px; right: -32px; top: 0; bottom: 0;
  background: rgba(255,255,255,0.025);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.domain-row:hover::before { opacity: 1; }

/* Numéro */
.domain-row__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196,150,60,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  text-align: right;
  letter-spacing: -1px;
  transition: color var(--transition);
}
.domain-row:hover .domain-row__num {
  color: rgba(196,150,60,0.4);
}

/* Corps */
.domain-row__body { flex: 1; min-width: 0; }

.domain-row__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.domain-row:hover .domain-row__title { color: var(--gold-light); }

.domain-row__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 580px;
}

.domain-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.domain-row__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(196,150,60,0.75);
  border: 1px solid rgba(196,150,60,0.2);
  border-radius: 999px;
  padding: 3px 12px;
  letter-spacing: 0.3px;
  transition: border-color var(--transition), color var(--transition);
}
.domain-row:hover .domain-row__tags span {
  border-color: rgba(196,150,60,0.45);
  color: var(--gold-light);
}

/* CTA par ligne */
.domain-row__cta {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.domain-row__cta span {
  display: inline-block;
  transition: transform var(--transition);
}
.domain-row:hover .domain-row__cta {
  color: var(--gold);
}
.domain-row:hover .domain-row__cta span {
  transform: translateX(4px);
}

/* Footer CTA */
.domains__footer {
  margin-top: 56px;
}
.domains__footer-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.domains__footer-body {
  display: flex;
  align-items: center;
  gap: 32px;
}
.domains__footer-emblem {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.domains__footer-body p {
  flex: 1;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.domains__footer-body p em {
  color: rgba(255,255,255,0.7);
  font-style: normal;
}

/* ================================================
   EQUIPE
   ================================================ */
.equipe__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.notaire-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.notaire-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border);
}
.notaire-card__avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 2px solid var(--border);
}
.notaire-card__body { flex: 1; }
.notaire-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.notaire-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.notaire-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.notaire-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* ================================================
   TEMOIGNAGES
   ================================================ */
.temoignages__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.temoignages__stars { color: #F59E0B; font-size: 1.3rem; letter-spacing: 2px; }
.temoignages__score { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.temoignages__count { font-size: 0.875rem; color: var(--text-muted); }

.temoignages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.temoignage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.temoignage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.temoignage-card__stars { color: #F59E0B; font-size: 1rem; }
.temoignage-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.temoignage-card__footer { display: flex; align-items: center; justify-content: space-between; }
.temoignage-card__author { display: flex; align-items: center; gap: 12px; }
.temoignage-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}
.temoignage-card__author strong { display: block; font-size: 0.875rem; color: var(--text); }
.temoignage-card__author span { font-size: 0.78rem; color: var(--text-muted); }
.temoignage-card__source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.temoignages__cta { text-align: center; }
.temoignages__cta .btn--outline {
  color: var(--navy);
  border-color: rgba(27,45,91,0.3);
}
.temoignages__cta .btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ================================================
   RENDEZ-VOUS
   ================================================ */
.rdv .section__title--light { color: var(--navy); }
.rdv__container {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
  min-height: 500px;
}
#booking-rdv-inline {
  min-height: 500px;
  background: var(--cream);
}
/* Style l'iframe du widget inline */
#booking-rdv-inline iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

/* ================================================
   CONTACT
   ================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__infos { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,150,60,0.12);
  border-radius: var(--radius);
}
.contact__info-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact__info-item strong { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact__info-item p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact__phone-link { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.contact__phone-link:hover { color: var(--gold-light); }

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); }
.form__required { color: var(--gold); }
.form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-sans);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form__input::placeholder { color: rgba(255,255,255,0.25); }
.form__input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form__select option { background: var(--navy-deep); color: var(--white); }
.form__textarea { min-height: 120px; resize: vertical; }
.form__mention { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }

.form__feedback {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form__feedback.success {
  display: block;
  background: rgba(52,168,83,0.15);
  border: 1px solid rgba(52,168,83,0.3);
  color: #4ade80;
}
.form__feedback.error {
  display: block;
  background: rgba(234,67,53,0.15);
  border: 1px solid rgba(234,67,53,0.3);
  color: #f87171;
}

.contact__map-wrapper {
  width: 100%;
  max-width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(196,150,60,0.15);
  position: relative;
}
.contact__map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact__map-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,150,60,0.15);
  border-radius: var(--radius);
  margin-top: 16px;
  flex-wrap: wrap;
}
.contact__map-card-emblem { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.contact__map-card-address { flex: 1; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.contact__map-card .btn--outline { flex-shrink: 0; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(196,150,60,0.1);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo-emblem { font-size: 1.5rem; color: var(--gold); }
.footer__logo-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer__logo-sub { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 12px; }
.footer__tel { font-size: 1rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.footer__tel:hover { color: var(--gold-light); }

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__hours-table { font-size: 0.8rem; color: rgba(255,255,255,0.45); border-collapse: collapse; width: 100%; }
.footer__hours-table td { padding: 5px 0; }
.footer__hours-table td:first-child { padding-right: 12px; color: rgba(255,255,255,0.6); font-weight: 500; white-space: nowrap; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__legal-links { display: flex; gap: 24px; }
.footer__legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal-links a:hover { color: var(--gold); }
.footer__credit { font-size: 0.8rem; color: rgba(255,255,255,0.2); margin-left: auto; }
.footer__credit strong { color: rgba(196,150,60,0.5); font-weight: 600; }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .domain-row__cta { display: none; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .cabinet__grid  { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 72px 0; }
  /* Espace en bas pour le bouton flottant du widget */
  .footer { padding-bottom: 80px; }

  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-deep);
    padding: 16px 0 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav__links.open .nav__link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav__links.open .nav__link::after { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat-sep { display: none; }
  .hero__scroll { display: none; }

  .cabinet__grid     { grid-template-columns: 1fr; gap: 48px; }

  /* Domaines — layout colonne sur mobile */
  .domains { margin-top: 40px; }
  .domain-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 0;
  }
  .domain-row__num {
    font-size: 1.5rem;
    width: auto;
    text-align: left;
    margin-bottom: 6px;
    color: rgba(196,150,60,0.35);
  }
  .domain-row__title { font-size: 1.1rem; margin-bottom: 6px; }
  .domain-row__desc  { font-size: 0.82rem; margin-bottom: 10px; }
  .domain-row__tags  { gap: 6px; }
  .domain-row__tags span { font-size: 0.7rem; padding: 3px 10px; }
  .domain-row__cta {
    display: inline-flex;
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--gold);
  }
  .domains__footer-body { flex-direction: column; align-items: flex-start; gap: 16px; }
  .domains__footer-emblem { display: none; }
  .equipe__grid      { grid-template-columns: 1fr; }
  .temoignages__grid { grid-template-columns: 1fr; }
  .contact__grid     { grid-template-columns: 1fr; gap: 48px; }
  .form__row         { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom    { flex-direction: column; text-align: center; }

  .notaire-card { flex-direction: column; align-items: flex-start; }

  .contact__map-wrapper { height: 240px; }
  .contact__left { overflow: hidden; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .temoignages__rating { flex-wrap: wrap; justify-content: center; }
  .domain-row { padding: 20px 0; }
  .domain-row__num { font-size: 1.2rem; }
}
