@charset "UTF-8";
:root {
  --noir:#0e0d0b;
  --noir-soft:#1a1917;
  --encre:#2c2a24;
  --parchemin:#f7f4ee;
  --parchemin-dark:#ede9e0;
  --or:#b8913a;
  --or-light:#d4a84b;
  --or-pale:#f0e4c4;
  --gris:#6b6560;
  --gris-light:#a09890;
  --blanc:#ffffff;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Jost',sans-serif;
  --nav-h:80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--sans);
  background: var(--parchemin);
  color: var(--encre);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--parchemin-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--or);
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 145, 58, 0.2);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--encre);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.logo span.sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--or);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--encre);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--or);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.nav-urgence {
  color: #c0392b;
}

.nav-links a.nav-urgence:hover {
  color: var(--or);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or);
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--or);
  color: var(--blanc);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--encre);
  transition: all 0.3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--parchemin);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--encre);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
  padding: 0.2rem 0;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--or);
}

/* ── LAYOUT ── */
.section {
  padding: 7rem 0;
}

.section-alt {
  background: var(--encre);
  color: var(--parchemin);
}

.section-light {
  background: var(--parchemin-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--or);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: var(--or);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--or);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gris);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--or);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--noir);
}

.btn-outline {
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--encre);
}

.btn-outline:hover {
  background: var(--encre);
  color: var(--blanc);
}

.btn-ghost {
  background: transparent;
  color: var(--or);
  border: 1px solid var(--or);
}

.btn-ghost:hover {
  background: var(--or);
  color: var(--blanc);
}

/* ── PAGE HERO ── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--encre);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2.5rem 0;
}

.page-hero .section-title {
  color: var(--parchemin);
}

/* ── CARDS ── */
.expertise-card {
  padding: 2.5rem;
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--or-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.expertise-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--encre);
}

.expertise-card p {
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.read-more {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.read-more::after {
  content: "→";
  transition: transform 0.2s;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ── QUOTE ── */
.blockquote-section {
  background: var(--encre);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blockquote-section::before {
  content: "❝";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  color: rgba(184, 145, 58, 0.04);
  line-height: 1;
  font-family: var(--serif);
  pointer-events: none;
}

blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--parchemin);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  position: relative;
}

blockquote .or {
  color: var(--or);
  font-style: normal;
}

.blockquote-attr {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-light);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--or);
  padding: 4rem 0;
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-strip h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--blanc);
  font-style: italic;
}

.cta-strip .btn {
  background: var(--blanc);
  color: var(--or);
}

.cta-strip .btn:hover {
  background: var(--encre);
  color: var(--blanc);
}

/* ── OR DIVIDER ── */
.or-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.or-divider::before, .or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.or-divider span {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--or);
  font-style: italic;
}

/* ── PARCOURS ── */
.parcours-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.parcours-item:last-child {
  border-bottom: none;
}

.parcours-icon {
  width: 44px;
  height: 44px;
  background: var(--or-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--or);
}

.parcours-text h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--encre);
  margin-bottom: 0.3rem;
}

.parcours-text p {
  font-size: 0.92rem;
  color: var(--gris);
  font-weight: 300;
}

/* ── PORTRAIT ── */
.portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--encre);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--or);
}

.portrait-caption {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--blanc);
  border: 1px solid var(--or-pale);
  padding: 1.2rem 1.5rem;
}

.portrait-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--encre);
  font-weight: 500;
}

.portrait-caption span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 3px;
}

/* ── VALEURS ── */
.valeur-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.valeur-card {
  background: var(--blanc);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.valeur-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--or);
  transition: height 0.4s;
}

.valeur-card:hover::before {
  height: 100%;
}

.valeur-icon {
  width: 52px;
  height: 52px;
  background: var(--or-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--or);
}

.valeur-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--encre);
}

.valeur-card p {
  font-size: 0.97rem;
  color: var(--gris);
  line-height: 1.8;
  font-weight: 300;
}

/* ── EXPERTISES ── */
.expertise-full {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  align-items: start;
}

.expertise-full:last-child {
  border-bottom: none;
}

.expertise-number {
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 300;
  color: var(--or-pale);
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.expertise-content h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--encre);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.expertise-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--or);
}

.expertise-content p {
  font-size: 1rem;
  color: var(--gris);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.expertise-list li {
  font-size: 0.92rem;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.expertise-list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--or);
  flex-shrink: 0;
}

/* ── HONORAIRES ── */
.honoraire-block {
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}

.honoraire-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-left: 1px solid var(--or-pale);
  border-bottom: 1px solid var(--or-pale);
}

.honoraire-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.honoraire-block h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--encre);
  margin-bottom: 1rem;
}

.honoraire-block p {
  font-size: 0.97rem;
  color: var(--gris);
  line-height: 1.9;
  font-weight: 300;
}

.honoraire-block ul {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.honoraire-block ul li {
  font-size: 0.97rem;
  color: var(--gris);
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
  line-height: 1.7;
}

.honoraire-block ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--or);
}

/* ── MÉDIAS ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.media-card {
  background: var(--blanc);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.media-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--or);
  transition: width 0.4s;
}

.media-card:hover {
  background: var(--encre);
}

.media-card:hover::before {
  width: 100%;
}

.media-card:hover .media-meta {
  color: var(--or);
}

.media-card:hover h4 {
  color: var(--parchemin);
}

.media-card:hover p {
  color: var(--gris-light);
}

.media-card:hover .read-more {
  color: var(--or-light);
}

.media-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris-light);
  margin-bottom: 0.7rem;
  font-weight: 500;
  transition: color 0.3s;
}

.media-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--encre);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  transition: color 0.3s;
}

.media-card p {
  font-size: 0.92rem;
  color: var(--gris);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-weight: 300;
  transition: color 0.3s;
}

.media-card .read-more {
  font-size: 0.65rem;
  transition: color 0.3s;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  font-size: 1rem;
  color: var(--encre);
  text-decoration: none;
  line-height: 1.7;
  display: block;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--or);
}

.contact-languages {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.lang-badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--or);
  color: var(--or);
  padding: 0.3rem 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--encre);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--or);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.honeypot {
  display: none !important;
}

.form-notice {
  font-size: 0.85rem;
  color: var(--gris-light);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

#form-msg {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  display: none;
}

#form-msg.success {
  background: #edf7f0;
  color: #1a6b3a;
  border-left: 3px solid #1a6b3a;
  display: block;
}

#form-msg.error {
  background: #fdf0ef;
  color: #9b2a2a;
  border-left: 3px solid #9b2a2a;
  display: block;
}

/* ── MAP ── */
.map-container {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: 3rem;
  filter: grayscale(20%);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--blanc);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--encre);
  transition: color 0.2s, background 0.2s;
}

.faq-question:hover {
  color: var(--or);
  background: var(--parchemin-dark);
}

.faq-question.open {
  color: var(--or);
  background: var(--parchemin-dark);
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--or);
  transition: transform 0.3s ease;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 2rem;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 0.97rem;
  color: var(--gris);
  line-height: 1.9;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--noir);
  color: var(--parchemin);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gris-light);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--or);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.8;
  font-weight: 300;
}

.footer-col a {
  color: var(--gris-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--or);
}

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--or);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
}

.anim.visible {
  animation: fadeInUp 0.7s ease forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .expertise-full {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .expertise-number {
    font-size: 3rem;
  }
  .valeur-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .expertise-list {
    grid-template-columns: 1fr;
  }
  .cta-strip .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  :root {
    --nav-h:64px;
  }
  .section {
    padding: 5rem 0;
  }
  .container, .container-narrow {
    padding: 0 1.5rem;
  }
  .page-hero-inner {
    padding: 3rem 1.5rem 0;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
/* ── MOBILE AMÉLIORÉ (overrides génériques) ── */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    max-height: none !important;
    grid-template-columns: 1fr !important;
    padding-top: var(--nav-h);
  }
  .hero-visual {
    display: none !important;
  }
  .hero-mobile-photo {
    display: block !important;
  }
  .hero-text, [style*="padding:5rem 4rem 4rem 8rem"] {
    padding: 3rem 1.5rem 4rem !important;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .expertise-full {
    grid-template-columns: 1fr !important;
  }
  .valeur-grid {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .cta-strip .container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }
  .cta-strip h2 {
    font-size: 1.3rem !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 3fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="gap:6rem"] {
    gap: 2rem !important;
  }
  [style*="gap:5rem"] {
    gap: 2rem !important;
  }
  [style*="padding:7rem 0"] {
    padding: 4rem 0 !important;
  }
  .blockquote-section {
    padding: 4rem 0 !important;
  }
  blockquote {
    font-size: 1.1rem !important;
  }
  .expertise-number {
    font-size: 3rem !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .page-hero-inner {
    padding: 3rem 1.5rem 0 !important;
  }
  .expertise-list {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr;gap:0 2rem"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="font-size:clamp"] {
    font-size: 1.6rem !important;
  }
  .nav-inner {
    padding: 0 1rem !important;
  }
  .logo {
    font-size: 0.9rem !important;
  }
}
/* ── BANDEAU URGENCE MOBILE ── */
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
#urgence-bandeau {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 2000;
}

#urgence-bandeau a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--encre);
  border: 1px solid rgba(184, 145, 58, 0.4);
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}

#urgence-bandeau .pulse-dot {
  width: 7px;
  height: 7px;
  background: #c0392b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}

#urgence-bandeau .label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
}

/* ── Utilitaires ── */
.nowrap {
  white-space: nowrap;
}

/* ── BANDEAU URGENCE — mobile ── */
#urgence-bandeau {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 2000;
}

#urgence-bandeau a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--encre);
  border: 1px solid rgba(184, 145, 58, 0.4);
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}

#urgence-bandeau .pulse-dot {
  width: 7px;
  height: 7px;
  background: #c0392b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}

#urgence-bandeau .urgence-icon {
  font-size: 1.1rem;
  line-height: 1;
  display: none;
}

#urgence-bandeau .label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
}

/* Sur mobile : on n'affiche que le pictogramme clignotant */
@media (max-width: 768px) {
  #urgence-bandeau a {
    padding: 0.7rem 0.7rem;
  }
  #urgence-bandeau .label {
    display: none;
  }
  #urgence-bandeau .urgence-icon {
    display: inline;
  }
}
/* ── POP-IN DE CONFIRMATION ── */
.urgence-modal[hidden] {
  display: none;
}

.urgence-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}

.urgence-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.urgence-modal-content {
  position: relative;
  background: var(--parchemin);
  border: 1px solid rgba(184, 145, 58, 0.4);
  padding: 2rem 2.2rem 1.6rem;
  max-width: 340px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.urgence-modal-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 0.8rem;
}

.urgence-modal-phone {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--encre);
  margin: 0 0 0.3rem;
}

.urgence-modal-phone a {
  color: var(--encre);
  text-decoration: none;
  border-bottom: 1px solid var(--or-pale);
  padding-bottom: 2px;
}

.urgence-modal-phone a:hover {
  color: var(--or);
}

.urgence-modal-question {
  font-size: 0.95rem;
  color: var(--gris);
  margin: 0 0 1.5rem;
}

.urgence-modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.urgence-modal-btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--encre);
  background: transparent;
  color: var(--encre);
  cursor: pointer;
  transition: all 0.2s;
}

.urgence-modal-confirm {
  background: var(--or);
  border-color: var(--or);
  color: var(--blanc);
}

.urgence-modal-confirm:hover {
  background: var(--noir);
  border-color: var(--noir);
}

.urgence-modal-cancel:hover {
  background: var(--encre);
  color: var(--blanc);
}

body#index {
  /* ── HERO SECTION ── */
}
body#index .hero-section {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 58% 42%;
}
body#index .hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
  position: relative;
}
body#index .hero-visual-col {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
body#index .hero-mobile-img {
  display: none;
}
body#index {
  /* Hero responsive */
}
@media (max-width: 1024px) {
  body#index .hero-section {
    grid-template-columns: 55% 45%;
  }
  body#index .hero-text-col {
    padding: 5rem 3rem 5rem 5rem;
  }
}
@media (max-width: 768px) {
  body#index .hero-section {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  body#index .hero-visual-col {
    display: none !important;
  }
  body#index .hero-text-col {
    padding: 2.5rem 1.5rem 1rem !important;
    justify-content: flex-start !important;
    order: 1;
  }
  body#index .hero-text-col::before {
    display: none !important;
  }
  body#index .hero-text-col > p {
    margin-bottom: 1.5rem !important;
  }
  body#index .hero-mobile-img {
    display: block !important;
    order: 2;
    position: relative;
    overflow: hidden;
    height: 80vw;
    max-height: 380px;
    margin-top: 0;
    background: var(--encre);
  }
  body#index .hero-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85);
    display: block;
  }
  body#index .hero-mobile-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 13, 11, 0.7) 0%, rgba(14, 13, 11, 0.1) 60%, transparent 100%);
  }
  body#index .hero-mobile-img .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 480px) {
  body#index .hero-text-col {
    padding: 2.5rem 1.2rem 0.8rem !important;
  }
  body#index .hero-mobile-img {
    height: 80vw;
    max-height: 360px;
  }
}

body#contact {
  /* ── Force Cal.com full width ── */
}
body#contact #cal-embed-container,
body#contact #cal-embed-container > div,
body#contact #cal-embed-container iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}
body#contact {
  /* ── MOBILE AMÉLIORÉ (contact) ── */
}
@media (max-width: 768px) {
  body#contact .hero {
    height: auto !important;
    max-height: none !important;
    grid-template-columns: 1fr !important;
    padding-top: var(--nav-h);
  }
  body#contact .hero-visual {
    display: none !important;
  }
  body#contact .hero-text, body#contact [style*="padding:7rem 4rem 7rem 8rem"] {
    padding: 3rem 1.5rem 4rem !important;
  }
  body#contact .grid-2, body#contact .grid-3, body#contact .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  body#contact .expertise-full {
    grid-template-columns: 1fr !important;
  }
  body#contact .valeur-grid {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }
  body#contact .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  body#contact .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  body#contact .cta-strip .container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }
  body#contact .cta-strip h2 {
    font-size: 1.3rem !important;
  }
  body#contact [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  body#contact [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  body#contact [style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
  body#contact [style*="grid-template-columns:1fr 3fr"] {
    grid-template-columns: 1fr !important;
  }
  body#contact [style*="gap:6rem"] {
    gap: 2rem !important;
  }
  body#contact [style*="gap:5rem"] {
    gap: 2rem !important;
  }
  body#contact [style*="padding:7rem 0"] {
    padding: 4rem 0 !important;
  }
  body#contact .blockquote-section {
    padding: 4rem 0 !important;
  }
  body#contact blockquote {
    font-size: 1.1rem !important;
  }
  body#contact .expertise-number {
    font-size: 3rem !important;
  }
  body#contact .section-title {
    font-size: 1.8rem !important;
  }
  body#contact .page-hero-inner {
    padding: 3rem 1.5rem 0 !important;
  }
  body#contact .expertise-list {
    grid-template-columns: 1fr !important;
  }
  body#contact [style*="grid-template-columns:1fr 1fr;gap:0 2rem"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  body#contact [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  body#contact [style*="font-size:clamp"] {
    font-size: 1.6rem !important;
  }
  body#contact .nav-inner {
    padding: 0 1rem !important;
  }
  body#contact .logo {
    font-size: 0.9rem !important;
  }
}

body[id="404"] .error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--encre);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body[id="404"] .error-hero::before {
  content: "404";
  position: absolute;
  font-family: var(--serif);
  font-size: 30vw;
  font-weight: 300;
  color: rgba(184, 145, 58, 0.04);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
body[id="404"] .error-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
body[id="404"] .error-num {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 2rem;
  display: block;
}
body[id="404"] .error-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--parchemin);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
body[id="404"] .error-title em {
  font-style: italic;
  color: var(--or);
}
body[id="404"] .error-text {
  font-size: 0.95rem;
  color: var(--gris-light);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 3rem;
}
body[id="404"] .error-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
body[id="404"] .error-divider {
  width: 40px;
  height: 1px;
  background: var(--or);
  margin: 0 auto 2rem;
}
body[id="404"] .error-phone {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--or);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
body[id="404"] .error-phone:hover {
  color: var(--or-light);
}
body[id="404"] .error-phone-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

body[id^=avocat-] {
  /* Ces deux lignes étaient dans le 2e <style> des avocat-*.html */
}
body[id^=avocat-] html, body[id^=avocat-] body {
  overflow-x: hidden !important;
}
body[id^=avocat-] * {
  box-sizing: border-box !important;
}
body[id^=avocat-] .seo-hero {
  padding-top: var(--nav-h);
  background: var(--noir);
  padding-bottom: 3rem;
}
body[id^=avocat-] .seo-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
}
body[id^=avocat-] .seo-banner {
  background: var(--or);
  padding: 2rem 1.5rem;
}
body[id^=avocat-] .seo-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
body[id^=avocat-] .seo-banner-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.3;
}
body[id^=avocat-] .seo-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
body[id^=avocat-] .seo-banner-btns .btn {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.65rem;
}
body[id^=avocat-] .seo-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
body[id^=avocat-] .seo-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body[id^=avocat-] .seo-text p {
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
body[id^=avocat-] .seo-ibox {
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin-bottom: 2px;
}
body[id^=avocat-] .seo-ibox h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--encre);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--or-pale);
}
body[id^=avocat-] .seo-ibox ul {
  list-style: none;
}
body[id^=avocat-] .seo-ibox li {
  font-size: 0.88rem;
  color: var(--gris);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0.7rem;
  font-weight: 300;
}
body[id^=avocat-] .seo-ibox li span {
  color: var(--or);
  flex-shrink: 0;
}
body[id^=avocat-] .seo-cab {
  background: var(--encre);
  padding: 1.5rem;
  margin-bottom: 2px;
}
body[id^=avocat-] .seo-cab p {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--or-pale);
  margin-bottom: 0.8rem;
}
body[id^=avocat-] .seo-cab .sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--gris-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}
body[id^=avocat-] .seo-urgence {
  background: var(--noir);
  padding: 2rem 1.5rem;
  text-align: center;
}
body[id^=avocat-] .seo-faq {
  background: var(--parchemin-dark);
  padding: 3rem 1.5rem;
}
body[id^=avocat-] .seo-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
body[id^=avocat-] .seo-cta {
  background: var(--or);
  padding: 3rem 1.5rem;
  text-align: center;
}
body[id^=avocat-] .seo-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}
body[id^=avocat-] .seo-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 300px;
  margin: 0 auto;
}
body[id^=avocat-] .seo-cta-btns .btn {
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  body[id^=avocat-] .seo-hero-inner {
    padding: 5rem 2.5rem 0;
  }
  body[id^=avocat-] .seo-banner {
    padding: 2.5rem 0;
  }
  body[id^=avocat-] .seo-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
  }
  body[id^=avocat-] .seo-banner-btns {
    flex-direction: row;
  }
  body[id^=avocat-] .seo-banner-btns .btn {
    width: auto;
  }
  body[id^=avocat-] .seo-content {
    padding: 5rem 2.5rem;
  }
  body[id^=avocat-] .seo-ibox {
    padding: 2rem;
  }
  body[id^=avocat-] .seo-cab {
    padding: 2rem;
  }
  body[id^=avocat-] .seo-faq {
    padding: 5rem 2.5rem;
  }
  body[id^=avocat-] .seo-cta {
    padding: 4rem 2.5rem;
  }
  body[id^=avocat-] .seo-cta-btns {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
  body[id^=avocat-] .seo-cta-btns .btn {
    width: auto;
  }
}
@media (min-width: 1024px) {
  body[id^=avocat-] .seo-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: start;
  }
  body[id^=avocat-] .seo-text {
    flex: 3;
  }
  body[id^=avocat-] .seo-sidebar {
    flex: 2;
  }
}
