/* ============================================================
   Office notarial Frédéric Craus, Pierrevert
   Palette : papier ivoire #F6F2E9, encre #1C2B2D, laiton #A9884E
   Typo : Fraunces (titres), Spectral (corps)
   ============================================================ */

:root {
  --paper: #F6F2E9;
  --paper-alt: #EFE9DB;
  --ink: #1C2B2D;
  --ink-soft: #3C4A4C;
  --accent: #A9884E;
  --accent-soft: rgba(169, 136, 78, 0.35);
  --accent-light: #C9AE73;
  --max: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Spectral', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Intitulés de section courts et discrets, la couleur ne tamponne pas chaque bloc */
.kicker {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.kicker::before { content: none; }

/* ---------- Révélations au scroll : contenu visible par défaut,
   l'animation n'est qu'un bonus quand JS et l'observer fonctionnent ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0s);
}
html.js .reveal.visible { opacity: 1; transform: none; }

/* Cascade : les éléments d'un même groupe se révèlent en léger décalé */
html.js :is(.domains-grid, .trust-grid, .team-grid, .gnc-grid, .contact-grid) > .reveal:nth-child(2) { --stagger: 80ms; }
html.js :is(.domains-grid, .trust-grid, .team-grid, .gnc-grid, .contact-grid) > .reveal:nth-child(3) { --stagger: 160ms; }
html.js :is(.domains-grid, .trust-grid, .team-grid, .gnc-grid, .contact-grid) > .reveal:nth-child(4) { --stagger: 240ms; }

/* Listes de prestations : la liste est un seul .reveal, les items cascadent dedans */
html.js .service-list.reveal .service-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .service-list.reveal .service-item:nth-child(2) { transition-delay: 80ms; }
html.js .service-list.reveal .service-item:nth-child(3) { transition-delay: 160ms; }
html.js .service-list.reveal .service-item:nth-child(4) { transition-delay: 240ms; }
html.js .service-list.reveal .service-item:nth-child(5) { transition-delay: 320ms; }
html.js .service-list.reveal .service-item:nth-child(6) { transition-delay: 400ms; }
html.js .service-list.reveal.visible .service-item { opacity: 1; transform: none; }

/* Grands bandeaux photo : la photo se dévoile une fois, léger zoom vers net */
html.js .photo-frame.reveal { overflow: hidden; }
html.js .photo-frame.reveal img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .photo-frame.reveal.visible img { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .service-list.reveal .service-item { opacity: 1; transform: none; transition: none; }
  html.js .photo-frame.reveal img { opacity: 1; transform: none; transition: none; }
  .hero-media img, .page-hero img { animation: none !important; }
  .site-header, .header-inner, .brand, .header-phone, .brand svg text { transition: none !important; }
  .domain-card { transition: background 0.3s ease; }
  .domain-card:hover,
  html.js .domain-card.reveal.visible:hover { transform: none; box-shadow: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(28, 43, 45, 0.93);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 174, 115, 0.28);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height 0.35s ease;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
  min-height: 44px;
  transition: color 0.35s ease;
}
.brand svg text { transition: fill 0.35s ease; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-family: 'Spectral', serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a.nav-link {
  text-decoration: none;
  font-size: 14.5px;
  color: rgba(246, 242, 233, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.header-nav a.nav-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.header-nav a.nav-link[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  min-height: 44px;
}
.header-phone svg { flex: none; }
.header-phone:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 26px;
  font-family: 'Spectral', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--accent); color: var(--ink); }
.btn-solid { background: var(--accent); color: var(--ink); }
.btn-solid:hover { background: #8F7440; border-color: #8F7440; }

/* Burger : visible uniquement en mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  background: transparent;
  border: 1px solid var(--accent-soft);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--ink);
  border-bottom: 1px solid rgba(201, 174, 115, 0.28);
}
.nav-open .mobile-nav { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 4px 24px;
  text-decoration: none;
  font-size: 16px;
  color: rgba(246, 242, 233, 0.9);
  border-top: 1px solid rgba(201, 174, 115, 0.15);
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--accent); }

.nav-links-desktop { display: none; }
@media (min-width: 980px) {
  .nav-links-desktop { display: flex; }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}
@media (max-width: 979px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}
@media (max-width: 560px) {
  .header-phone .phone-label { display: none; }
  .brand-name { font-size: 15px; }
}

/* En-tête condensé au-delà du hero : fond ivoire translucide, texte encre */
.site-header.is-scrolled {
  background: rgba(246, 242, 233, 0.92);
  border-bottom-color: rgba(169, 136, 78, 0.4);
}
.site-header.is-scrolled .header-inner { height: 58px; }
.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .brand svg text { fill: var(--ink); }
.site-header.is-scrolled .brand-name small { color: var(--accent); }
.site-header.is-scrolled .header-nav a.nav-link { color: var(--ink-soft); }
.site-header.is-scrolled .header-nav a.nav-link:hover,
.site-header.is-scrolled .header-nav a.nav-link[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.site-header.is-scrolled .header-phone { color: var(--ink); }
.site-header.is-scrolled .header-phone:hover { color: var(--accent); }
.site-header.is-scrolled .btn { border-color: var(--accent); color: var(--ink); }
.site-header.is-scrolled .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.site-header.is-scrolled .mobile-nav {
  background: rgba(246, 242, 233, 0.97);
  border-bottom-color: rgba(169, 136, 78, 0.3);
}
.site-header.is-scrolled .mobile-nav a {
  color: var(--ink-soft);
  border-top-color: rgba(169, 136, 78, 0.25);
}
.site-header.is-scrolled .mobile-nav a:hover,
.site-header.is-scrolled .mobile-nav a[aria-current="page"] { color: var(--accent); }

/* ---------- Hero accueil : photographie pleine hauteur ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 34s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.09) translate(-1.2%, 1%); }
}
.hero::after {
  /* voile pour garantir la lisibilité, quoi qu'il arrive */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,43,45,0.62) 0%, rgba(28,43,45,0.34) 45%, rgba(28,43,45,0.06) 75%),
    linear-gradient(180deg, rgba(28,43,45,0.5) 0%, rgba(28,43,45,0.12) 42%, rgba(28,43,45,0.78) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 24px 84px;
}
.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-kicker::after { content: ''; width: 70px; height: 1px; background: var(--accent); }
.hero h1 {
  font-size: clamp(40px, 7vw, 82px);
  letter-spacing: -0.01em;
  max-width: 13ch;
  text-shadow: 0 2px 26px rgba(28,43,45,0.45);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-light); }
.hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  color: rgba(246, 242, 233, 0.95);
  text-shadow: 0 1px 14px rgba(28,43,45,0.5);
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero .btn { border-color: rgba(246,242,233,0.65); color: var(--paper); }
.hero .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero .btn-solid { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.hero .btn-solid:hover { background: #8F7440; }
.hero-coords {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 242, 233, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  font-size: 14.5px;
  color: rgba(246, 242, 233, 0.85);
}
.hero-coords a { text-decoration: none; }
.hero-coords a:hover { color: var(--accent); }

/* ---------- Bandeau de page interne ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  min-height: 46dvh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns-settle 20s ease-out both;
  will-change: transform;
}
@keyframes kenburns-settle {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
/* Bandeau contact : garder le village et le clocher dans le cadre */
.page-hero img.focus-village { object-position: 50% 42%; }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,43,45,0.5) 0%, rgba(28,43,45,0.2) 45%, rgba(28,43,45,0.75) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 24px 52px;
}
.breadcrumb {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,242,233,0.75);
  margin-bottom: 14px;
}
.breadcrumb a { text-decoration: none; color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  max-width: 18ch;
  text-shadow: 0 2px 22px rgba(28,43,45,0.5);
}

/* ---------- Sections ---------- */
section { padding: 104px 0; }
@media (max-width: 700px) { section { padding: 72px 0; } }

.section-title {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  max-width: 20ch;
  margin-bottom: 26px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.split-rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
@media (max-width: 860px) {
  .split, .split-rev { grid-template-columns: 1fr; gap: 36px; }
}

.lede {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 300;
  line-height: 1.55;
}
.body-text { color: var(--ink-soft); }
.body-text p + p { margin-top: 18px; }

.photo-frame {
  border: 1px solid var(--accent-soft);
  padding: 12px;
  background: var(--paper);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 12px;
  padding-left: 14px;
  border-left: 1px solid var(--accent);
}

/* Fonds alternés */
.section-alt { background: var(--paper-alt); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink .body-text { color: rgba(246, 242, 233, 0.82); }
.section-ink .section-title { color: var(--paper); }
.section-ink .photo-frame { background: transparent; }

/* ---------- Cartes domaines (accueil) ---------- */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  margin-top: 16px;
}
@media (max-width: 760px) { .domains-grid { grid-template-columns: 1fr; } }
.domain-card {
  position: relative;
  background: var(--paper);
  padding: 42px 38px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.domain-card:hover {
  background: var(--paper-alt);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(28, 43, 45, 0.10);
  z-index: 1;
}
/* Révélation en fondu seul : le transform reste disponible pour le survol */
html.js .domain-card.reveal { transform: none; }
html.js .domain-card.reveal.visible {
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--stagger, 0s),
              background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
html.js .domain-card.reveal.visible:hover { transform: translateY(-4px); }
.domain-card svg {
  width: 40px; height: 40px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.3;
  margin-bottom: 18px;
}
.domain-card h3 { font-size: 24px; margin-bottom: 12px; }
.domain-card p { font-size: 15.5px; color: var(--ink-soft); }
.domain-card .card-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ---------- Liste de prestations (pages pôles) ---------- */
.service-list { margin-top: 14px; }
.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--accent-soft);
}
.service-item:last-child { border-bottom: 1px solid var(--accent-soft); }
@media (max-width: 640px) { .service-item { grid-template-columns: 1fr; gap: 8px; } }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--accent);
}
.service-item h3 { font-size: 23px; margin-bottom: 8px; }
.service-item p { color: var(--ink-soft); font-size: 16px; max-width: 62ch; }

/* ---------- Le seuil (motif porche) ---------- */
.seuil-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 70px;
  align-items: center;
}
@media (max-width: 860px) {
  .seuil-grid { grid-template-columns: 1fr; gap: 40px; }
  .seuil-grid .photo-frame { max-width: 420px; }
}

/* ---------- Équipe / portraits ---------- */
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--accent-soft);
  padding: 14px;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(169,136,78,0.10), transparent 55%),
    linear-gradient(160deg, #243638 0%, #162224 100%);
}
.portrait-placeholder .mono {
  font-family: 'Fraunces', serif;
  font-size: 84px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.portrait-placeholder .mono-caption {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246,242,233,0.55);
  text-align: center;
  padding: 0 10px;
}
.portrait-ring {
  width: 148px; height: 148px;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline { margin-top: 36px; border-top: 1px solid rgba(201,174,115,0.3); }
.timeline li {
  list-style: none;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(201,174,115,0.18);
  font-size: 15.5px;
}
.timeline .year { font-family: 'Fraunces', serif; font-size: 19px; color: var(--accent); }

.lang-note {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  padding: 9px 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 12px;
}
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; max-width: 340px; } }
.team-photo {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 65% 25%, rgba(169,136,78,0.10), transparent 60%),
    linear-gradient(150deg, #29393B, #1A282A);
  border: 1px solid var(--accent-soft);
  margin-bottom: 18px;
}
.team-photo span { font-family: 'Fraunces', serif; font-size: 52px; color: var(--accent); }
.team-card h3 { font-size: 20px; }
.team-card p {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

/* ---------- GNC ---------- */
.gnc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
@media (max-width: 860px) { .gnc-grid { grid-template-columns: 1fr; } }
.gnc-card {
  border: 1px solid rgba(201,174,115,0.3);
  padding: 30px 28px 26px;
}
.gnc-card h3 { font-size: 22px; margin-bottom: 4px; }
.gnc-card .gnc-city-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.gnc-card address {
  font-style: normal;
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.65;
}
.gnc-card a { text-decoration: none; }
.gnc-card a:hover { color: var(--accent); }
.gnc-card .gnc-notaires {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(201,174,115,0.2);
  font-size: 13.5px;
  opacity: 0.75;
}
.section-ink .gnc-card { background: rgba(246, 242, 233, 0.03); }
.section-ink .gnc-card h3 { color: var(--paper); }
.section-ink .gnc-card address { color: rgba(246,242,233,0.8); }
.section-ink .gnc-card a { color: rgba(246,242,233,0.9); }

/* ---------- Réassurance ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 16px;
}
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item { border-top: 1px solid var(--accent); padding-top: 22px; }
.trust-item h3 { font-size: 21px; margin-bottom: 10px; }
.trust-item p { font-size: 15.5px; color: var(--ink-soft); }
.section-ink .trust-item p { color: rgba(246,242,233,0.8); }
.trust-link { margin-top: 44px; font-size: 15px; }
.trust-link a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.trust-link a:hover { color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: start;
  margin-top: 10px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block dl { display: grid; gap: 22px; margin-top: 26px; }
.contact-block dt {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.contact-block dd { margin: 0; }
.contact-block dd a { text-decoration: none; }
.contact-block dd a:hover { color: var(--accent); }
.contact-tel { font-family: 'Fraunces', serif; font-size: 26px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.map-frame {
  border: 1px solid var(--accent-soft);
  padding: 12px;
  background: var(--paper-alt);
}
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }
@media (max-width: 640px) { .map-frame iframe { height: 320px; } }

/* CTA bas de page pôle */
.cta-band { text-align: left; }
.cta-band .btn-solid { margin-top: 6px; }
.cta-band p { max-width: 58ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(246,242,233,0.75);
  padding: 64px 0 40px;
  font-size: 14.5px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,174,115,0.25);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer h3 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Spectral', serif;
  font-weight: 500;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(246,242,233,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-brand .brand-name { color: var(--paper); font-size: 19px; }
.footer-brand p { margin-top: 14px; max-width: 38ch; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(246,242,233,0.5);
}
.footer-credit a {
  color: rgba(246,242,233,0.7);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: var(--accent); }
.legal { margin-top: 34px; border: 1px solid rgba(201,174,115,0.25); }
.legal summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.legal summary::after { content: '+'; font-size: 18px; }
.legal[open] summary::after { content: '\2212'; }
.legal-body {
  padding: 6px 20px 24px;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(246,242,233,0.65);
}
.legal-body p + p { margin-top: 12px; }
.legal-body strong { color: rgba(246,242,233,0.85); }

/* ---------- Accent sur fonds sombres : déclinaison claire du laiton doré ---------- */
.site-header .brand-name small { color: var(--accent-light); }
.header-nav a.nav-link:hover { color: var(--accent-light); border-bottom-color: var(--accent-light); }
.header-nav a.nav-link[aria-current="page"] { color: var(--accent-light); border-bottom-color: var(--accent-light); }
.header-phone:hover { color: var(--accent-light); }
.site-header .btn { border-color: rgba(246, 242, 233, 0.55); color: var(--paper); }
.site-header .btn:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--ink); }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--accent-light); }
.hero-kicker { color: var(--accent-light); }
.hero-kicker::after { background: var(--accent-light); }
.hero-coords a:hover { color: var(--accent-light); }
.breadcrumb a { color: var(--accent-light); }
.section-ink .kicker { color: rgba(246, 242, 233, 0.6); }
.timeline .year { color: var(--accent-light); }
.lang-note { color: var(--accent-light); border-color: rgba(201, 174, 115, 0.4); }
.section-ink .gnc-city-sub { color: var(--accent-light); }
.portrait-placeholder .mono, .team-photo span { color: var(--accent-light); }
.site-footer h3 { color: var(--accent-light); }
.site-footer a:hover { color: var(--accent-light); }
.legal summary { color: var(--accent-light); }

/* ---------- Ouvertures de section variées (l'accent coloré reste occasionnel) ---------- */
.eyebrow {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.section-ink .eyebrow { color: rgba(246, 242, 233, 0.7); }
.section-title.rule-top { border-top: 1px solid var(--accent); padding-top: 28px; }
.section-ink .section-title.rule-top { border-top-color: rgba(201, 174, 115, 0.5); }

/* Citation Giono, page L'étude */
.giono {
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  max-width: 34ch;
}
.giono cite {
  display: block;
  margin-top: 10px;
  font-family: 'Spectral', serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
