/* =============================================================
 * style_v3.css — Flammes Postales — Thème Patrimoine v3
 * ============================================================= */

:root {
  --creme:      #F2EBD9;
  --creme-dark: #E4D8C0;
  --creme-deep: #D5C8A8;
  --parchemin:  #C9B88A;
  --brun:       #6B4C2A;
  --brun-light: #8B6840;
  --brun-pale:  #F7F1E6;
  --bordeaux:   #7C2032;
  --bordeaux-l: #F5E8EA;
  --or:         #B8912A;
  --or-pale:    #F5EDD4;
  --encre:      #1E1812;
  --encre-mid:  #3A2E1E;
  --encre-soft: #6B5B42;
  --border:     rgba(107,76,42,0.2);
  --border-strong: rgba(107,76,42,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--creme);
  color: var(--encre);
  overflow-x: hidden;
  cursor: default;
}

/* ── TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ── ORNAMENT HELPERS ── */
.ornament {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--or); font-size: 0.75rem;
  margin: 0.5rem 0;
}
.ornament-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--parchemin), transparent); }
.ornament-text {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem; letter-spacing: 0.3em;
  color: var(--encre-soft); text-transform: uppercase;
}

/* ── HEADER ── */
header {
  position: relative; z-index: 10;
  background: var(--encre);
  border-bottom: 1px solid var(--or);
}
.header-top {
  background: var(--bordeaux);
  height: 3px;
}
.header-inner {
  display: flex; align-items: center;
  padding: 0 2.5rem; height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.logo-mark {
  display: flex; align-items: center; gap: 1rem;
}
.logo-seal {
  width: 44px; height: 44px; flex-shrink: 0;
}
.logo-seal svg { width: 44px; height: 44px; }
.logo-text {}
.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--creme);
  letter-spacing: 0.08em; line-height: 1;
}
.logo-name span { color: var(--or); }
.logo-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(194,168,130,0.5); margin-top: 3px;
}
nav {
  display: flex; gap: 0; margin-left: auto;
}
nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(194,168,130,0.6);
  text-decoration: none;
  padding: 0 1.1rem; height: 68px;
  display: flex; align-items: center;
  border-left: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--creme); background: rgba(184,145,42,0.1); }
nav a.nav-active { color: var(--or); border-bottom: 2px solid var(--or); }
.nav-cta {
  background: var(--bordeaux) !important;
  color: var(--creme-dark) !important;
  border-color: transparent !important;
}
.nav-cta:hover { background: #9B2840 !important; color: var(--creme) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0 1.25rem; }
.hamburger span { width: 22px; height: 1px; background: rgba(194,168,130,0.7); display: block; }
.mobile-nav { display: none; background: var(--encre); border-bottom: 1px solid var(--or); position: relative; z-index: 10; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.8rem 1.5rem; font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(194,168,130,0.65); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav a:hover { color: var(--creme); }


/* ── HERO NEWS PANEL ── */
.hero-news-panel {
  background: rgba(30,24,18,0.55);
  border: 1px solid rgba(184,145,42,0.2);
  border-top: 2px solid var(--or);
  display: flex; flex-direction: column;
  max-height: 380px;
}
.hero-news-body {
  flex: 1; overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,145,42,0.3) transparent;
}
.hero-news-head {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or);
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid rgba(184,145,42,0.2);
  background: rgba(0,0,0,0.2);
}
.hero-news-body { flex: 1; }
.hero-news-item {
  display: flex; gap: 0.45rem; align-items: flex-start;
  padding: 0.35rem 0.7rem;
  border-bottom: 1px solid rgba(184,145,42,0.1);
}
.hero-news-item:last-child { border-bottom: none; }
.hero-news-date {
  font-family: 'Courier Prime', monospace;
  font-size: 0.56rem; letter-spacing: 0.06em;
  color: var(--or);
  white-space: nowrap;
  flex-shrink: 0; margin-top: 2px;
}
.hero-news-text {
  font-size: 0.7rem; color: rgba(242,235,217,0.7);
  line-height: 1.28;
}
.hero-news-count {
  font-family: 'Courier Prime', monospace;
  font-size: 0.55rem; color: var(--or);
  display: block; margin-top: 1px;
}
.hero-news-link-item {
  font-size: 0.7rem; color: rgba(242,235,217,0.7);
  text-decoration: none; line-height: 1.3; display: block;
}
.hero-news-link-item:hover { color: var(--or); }
.hero-news-link {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(184,145,42,0.5); text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-top: 1px solid rgba(184,145,42,0.15);
  text-align: right; display: block;
  transition: color 0.2s;
}
.hero-news-link:hover { color: var(--or); }
@media(max-width:960px) {
  .hero-news-panel { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── HERO ── */
.hero {
  position: relative; z-index: 2;
  background: var(--encre);
  overflow: hidden;
  padding: 2.5rem 2.5rem 2rem;
}
/* ornate background pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(184,145,42,0.03) 0px, rgba(184,145,42,0.03) 1px,
    transparent 1px, transparent 12px
  );
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--or), var(--bordeaux), var(--or), transparent);
}
.hero-inner {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-text {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--or); margin-bottom: 1.5rem;
}
.hero-badge::before, .hero-badge::after {
  content: '✦'; font-size: 0.5rem;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  line-height: 1.1; letter-spacing: 0.04em;
  color: var(--creme); margin-bottom: 0.3rem;
}
.hero-title-sub {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: var(--or); margin-bottom: 1rem; line-height: 1.2;
}
.hero-rule {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--bordeaux), var(--or));
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.7;
  color: rgba(242,235,217,0.6); margin-bottom: 1.25rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-contact {
  font-size: 0.78rem; font-style: italic;
  color: rgba(242,235,217,0.45); margin-top: 0.6rem; line-height: 1.5;
}
.hero-contact a { color: var(--or); text-decoration: none; }
.hero-contact a:hover { text-decoration: underline; }
.hero-info {
  font-size: 0.72rem; color: rgba(242,235,217,0.38);
  margin-top: 0.75rem; line-height: 1.5;
  border-top: 1px solid rgba(184,145,42,0.12);
  padding-top: 0.6rem;
}
.hero-info a { color: var(--or); text-decoration: none; }
.hero-info a:hover { text-decoration: underline; }
.hero-info b { color: rgba(242,235,217,0.55); }
.btn-or {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--or); color: var(--encre);
  border: none; padding: 0.85rem 2rem; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-or:hover { background: #D4A830; transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: rgba(242,235,217,0.7);
  border: 1px solid rgba(184,145,42,0.4);
  padding: 0.85rem 2rem; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--or); color: var(--creme); transform: translateY(-1px); }

/* Stats engraved panel */
.hero-stats {
  background: rgba(30,24,18,0.7);
  border: 1px solid rgba(184,145,42,0.25);
  padding: 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background-color: rgba(184,145,42,0.12);
}
.hstat {
  background: rgba(30,24,18,0.85);
  padding: 1.5rem 1.5rem;
  text-align: center;
}
.hstat-n {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
  color: var(--or);
}
.hstat-sup { font-size: 0.9rem; color: var(--bordeaux); }
.hstat-rule { width: 24px; height: 1px; background: var(--parchemin); margin: 0.5rem auto; opacity: 0.4; }
.hstat-l {
  font-family: 'Cinzel', serif;
  font-size: 0.48rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,184,138,0.45);
}

/* ── SEARCH ── */
.search-section {
  position: relative; z-index: 2;
  background: var(--encre-mid);
  border-bottom: 1px solid var(--border-strong);
  padding: 1.1rem 2.5rem;
}
.search-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0.75rem; align-items: center; }
.search-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,184,138,0.5); white-space: nowrap;
}
.search-wrap { flex: 1; position: relative; max-width: 560px; }
.search-wrap input {
  width: 100%; font-family: 'Crimson Pro', serif; font-size: 1rem; font-style: italic;
  background: rgba(242,235,217,0.06);
  border: 1px solid rgba(184,145,42,0.25);
  border-left: 3px solid var(--bordeaux);
  color: var(--creme); padding: 0.6rem 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.search-wrap input::placeholder { color: rgba(201,184,138,0.4); }
.search-wrap input:focus { border-color: var(--or); background: rgba(242,235,217,0.09); }
.search-go {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--bordeaux); color: var(--creme-dark);
  border: none; padding: 0.6rem 1.5rem; cursor: pointer;
  transition: background 0.2s;
}
.search-go:hover { background: #9B2840; }

/* ── MAIN LAYOUT ── */
.main-wrap {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 2.5rem;
  display: grid; grid-template-columns: 1fr;
  gap: 3.5rem;
}

/* Section titles */
.section-title-block {
  margin-bottom: 1.75rem;
  text-align: center;
}
.section-cinzel {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--or); display: block; margin-bottom: 0.3rem;
}
.section-crimson {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem; font-weight: 300; font-style: italic;
  color: var(--encre);
}
.divider-or {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  margin: 0.6rem auto 0;
}

/* ── GALLERY ── */
.gallery {}
.gallery-filters { display: flex; gap: 0; margin-bottom: 1.25rem; border: 1px solid var(--border-strong); width: fit-content; }
.gf {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; border: none; border-right: 1px solid var(--border-strong);
  color: var(--encre-soft); padding: 0.45rem 1rem; cursor: pointer;
  transition: all 0.2s;
}
.gf:last-child { border-right: none; }
.gf:hover, .gf.active { background: var(--encre); color: var(--creme-dark); }

.flame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.flame-card {
  background: var(--brun-pale);
  border: 1px solid var(--border-strong);
  cursor: pointer; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.flame-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  border: 4px solid transparent;
  transition: border-color 0.2s;
  pointer-events: none;
}
.flame-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(107,76,42,0.18); }
.flame-card:hover::before { border-color: var(--or); }
.flame-img {
  height: 110px; background: var(--creme-dark);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.flame-info { padding: 0.7rem 0.9rem; }
.flame-city {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--brun); margin-bottom: 3px;
}
.flame-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; color: var(--encre-soft); letter-spacing: 0.04em;
}
.flame-corner {
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-bottom: 18px solid var(--creme-deep);
}

/* ── SIDEBAR ── */
.sidebar {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media(max-width:960px) {
  .sidebar { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .sidebar { grid-template-columns: 1fr; }
}

/* Map widget */
.map-box {
  background: var(--brun-pale);
  border: 1px solid var(--border-strong);
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}
.map-box::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid var(--border);
  pointer-events: none; z-index: 1;
}
.map-header {
  background: var(--encre);
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--or);
  display: flex; align-items: center; justify-content: space-between;
}
.map-header-title {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,184,138,0.7);
}
.map-header-count {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; color: var(--or);
}
.map-body { padding: 0.75rem; }
.france-mini { width: 100%; height: auto; display: block; }





.dp3:hover { fill: var(--bordeaux) !important; }
.dp3.sel  { fill: var(--bordeaux) !important; stroke: var(--or); stroke-width: 1; }
.map-legend { padding: 0.5rem 0.75rem 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ml-item { display: flex; align-items: center; gap: 5px; }
.ml-dot { width: 11px; height: 11px; border: 0.5px solid var(--border); }
.ml-label { font-family: 'Courier Prime', monospace; font-size: 0.52rem; color: var(--encre-soft); }

/* Widget box */
.widget-box {
  background: var(--brun-pale);
  border: 1px solid var(--border-strong);
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.widget-head {
  background: var(--encre-mid);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(184,145,42,0.3);
  display: flex; align-items: center; justify-content: space-between;
}
.widget-head-title {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,184,138,0.65);
}
.widget-head a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.55rem; color: var(--or); text-decoration: none;
  transition: color 0.2s;
}
.widget-head a:hover { color: var(--creme); }
.widget-body { padding: 1rem; }

/* Nouveautés */
.news-item {
  display: flex; gap: 0.65rem; align-items: flex-start;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-date {
  font-family: 'Courier Prime', monospace;
  font-size: 0.55rem; color: var(--bordeaux);
  background: var(--bordeaux-l); padding: 2px 5px;
  white-space: nowrap; margin-top: 1px; flex-shrink: 0;
}
.news-text { font-size: 0.82rem; color: var(--encre-mid); line-height: 1.4; font-weight: 400; }
.news-link {
  font-size: 0.82rem; color: var(--encre-mid); text-decoration: none;
  line-height: 1.4; display: block; font-weight: 400;
}
.news-link:hover { color: var(--bordeaux); }
.news-count { font-family: 'Courier Prime', monospace; font-size: 0.56rem; color: var(--encre-soft); display: block; margin-top: 1px; }

/* Themes */
.theme-list { display: flex; flex-direction: column; }
.theme-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s;
}
.theme-item:last-child { border-bottom: none; }
.theme-item:hover .theme-name { color: var(--bordeaux); }
.theme-num { font-family: 'Cinzel', serif; font-size: 0.52rem; color: var(--parchemin); min-width: 22px; text-align: right; }
.theme-name { font-family: 'Crimson Pro', serif; font-size: 0.9rem; font-weight: 600; color: var(--encre); transition: color 0.2s; }
.theme-bar-wrap { flex: 1; height: 3px; background: var(--creme-deep); }
.theme-bar { height: 100%; background: var(--brun); }
.theme-count { font-family: 'Courier Prime', monospace; font-size: 0.56rem; color: var(--encre-soft); min-width: 30px; text-align: right; }

/* Intro editorial box */
.intro-box {
  background: var(--encre);
  border: 1px solid rgba(184,145,42,0.25);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}
.intro-box::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(184,145,42,0.1);
  pointer-events: none;
}
.intro-box-title {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or); margin-bottom: 0.75rem;
}
.intro-box-text { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: rgba(242,235,217,0.6); font-style: italic; }
.intro-box-cta {
  margin-top: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap;
}



/* ── DUAL MAP LAYOUT ── */
.maps-wrap {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.map-france-wrap { flex: 1; }

.map-domtom-wrap {
  border: 1px solid var(--border);
  background: var(--creme-dark);
  padding: 4px;
}

.map-paris-wrap {
  border: 1px solid var(--border);
  background: var(--creme-dark);
  padding: 4px;
}
.map-sublabel {
  font-family: 'Courier Prime', monospace;
  font-size: 0.5rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--encre-soft); text-align: center;
  margin-bottom: 3px; opacity: 0.7;
}
.dp:hover { fill: var(--bordeaux) !important; }


/* ── DOM-TOM GRID ── */
.dt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--creme-dark);
}
.dt-box {
  background: var(--brun-pale);
  border: 1px solid var(--border);
  padding: 3px;
  text-align: center;
}
.dt-label {
  font-family: 'Courier Prime', monospace;
  font-size: 6px; letter-spacing: 0.04em;
  color: var(--brun); margin-top: 2px;
  line-height: 1.2;
}
.dt-count {
  font-family: 'Courier Prime', monospace;
  font-size: 5.5px; color: var(--encre-soft);
}
.map-domtom-wrap {
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}



/* Carte dans le hero */

/* Empêcher les SVG carte de déborder dans le hero */
.hero-carte svg,
.hero-carte .maps-wrap,
.hero-carte .map-france-wrap,
.hero-carte .map-paris-wrap,
.hero-carte .map-domtom-wrap,
.hero-carte .map-insets {
  max-width: 100%;
  overflow: hidden;
}

.hero-carte {
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
/* France en haut, pleine largeur */
/* Paris + DOM-TOM côte à côte en dessous */
.hero-carte .maps-wrap {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.hero-carte .map-france-wrap {
  width: 100%;
}
.hero-carte .map-insets {
  display: flex; gap: 0.4rem; align-items: flex-start;
}
.hero-carte .map-paris-wrap {
  flex: 1;
  border: 1px solid var(--border); background: var(--creme-dark); padding: 3px;
}
.hero-carte .map-domtom-wrap {
  flex: 1.4;
  border: 1px solid var(--border); background: var(--creme-dark); padding: 3px;
}
.hero-carte .map-sublabel {
  font-family: 'Courier Prime', monospace;
  font-size: 0.48rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(201,184,138,0.5); text-align: center; margin-bottom: 2px;
}

/* ── SECTION DERNIERS AJOUTS (pleine largeur) ── */
.news-section {
  position: relative; z-index: 2;
  background: var(--encre-mid);
  border-top: 1px solid rgba(184,145,42,0.2);
  border-bottom: 1px solid rgba(184,145,42,0.2);
}
.news-section-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.news-section-head {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or); white-space: nowrap; flex-shrink: 0;
}
.news-section-body {
  display: flex; gap: 0; flex-wrap: wrap; flex: 1;
}
.ns-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-left: 1px solid rgba(184,145,42,0.12);
}
.ns-date {
  font-family: 'Courier Prime', monospace;
  font-size: 0.55rem; color: var(--or); white-space: nowrap; flex-shrink: 0;
}
.ns-link {
  font-size: 0.78rem; color: rgba(242,235,217,0.65);
  text-decoration: none; white-space: nowrap;
  transition: color 0.2s;
}
.ns-link:hover { color: var(--or); }
.ns-count {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; color: var(--or); margin-left: 3px;
}
.ns-all {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(184,145,42,0.5); text-decoration: none; white-space: nowrap;
  flex-shrink: 0; margin-left: auto;
  transition: color 0.2s;
}
.ns-all:hover { color: var(--or); }
@media(max-width:900px) {
  .news-section-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .ns-all { margin-left: 0; }
}
@media(max-width:600px) {
  .news-section-body { flex-direction: column; }
}

/* ── (ancienne section carte supprimée) ── */
.map-section {
  position: relative; z-index: 2;
  background: var(--brun-pale);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.map-section-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 2.5rem;
}
.map-sublabel-main {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or); background: var(--encre);
  padding: 0.4rem 1rem; display: inline-block;
  margin-bottom: 0.75rem;
}
/* Maps en ligne horizontale dans la section pleine largeur */
.map-section .maps-wrap {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}
.map-section .map-france-wrap {
  flex: 3;
}
.map-section .map-paris-wrap {
  flex: 1.2;
  border: 1px solid var(--border);
  background: var(--creme-dark);
  padding: 4px;
}
.map-section .map-domtom-wrap {
  flex: 1.4;
  border: 1px solid var(--border);
  background: var(--creme-dark);
  padding: 4px;
  margin-top: 0;
}
.map-section .map-sublabel {
  font-family: 'Courier Prime', monospace;
  font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--encre-soft); text-align: center; margin-bottom: 3px;
}
@media(max-width:960px) {
  .map-section-inner { padding: 1rem 1.25rem; }
  .map-section .maps-wrap { flex-direction: column; gap: 0.75rem; }
}

/* ── STATS BANDEAU ── */
.stats-bandeau {
  position: relative; z-index: 2;
  background: var(--encre-mid);
  border-bottom: 1px solid rgba(184,145,42,0.3);
  border-top: 1px solid rgba(184,145,42,0.15);
}
.stats-bandeau-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.sb-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 2rem;
  flex: 1; justify-content: center;
}
.sb-n {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--or); line-height: 1;
}
.sb-n sup { font-size: 0.6rem; color: var(--bordeaux); }
.sb-sep { color: rgba(184,145,42,0.3); font-size: 0.7rem; }
.sb-l {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(201,184,138,0.6);
}
.sb-divider {
  width: 1px; height: 28px;
  background: rgba(184,145,42,0.2);
  flex-shrink: 0;
}
@media(max-width:600px) {
  .stats-bandeau-inner { flex-wrap: wrap; padding: 0 1rem; }
  .sb-item { padding: 0.65rem 1rem; flex: 0 0 50%; }
  .sb-divider { display: none; }
}

/* ── FOOTER ── */
footer {
  position: relative; z-index: 2;
  background: var(--encre);
  border-top: 1px solid var(--or);
}
.footer-tape {
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux) 0, var(--or) 50%, var(--bordeaux) 100%);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 2.5rem 2.5rem 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand {}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--creme); margin-bottom: 0.35rem;
}
.footer-logo span { color: var(--or); }
.footer-desc { font-size: 0.82rem; font-weight: 300; font-style: italic; color: rgba(242,235,217,0.4); line-height: 1.65; max-width: 260px; }
.footer-h { font-family: 'Cinzel', serif; font-size: 0.5rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(201,184,138,0.35); margin-bottom: 0.7rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.35rem; }
footer a { font-size: 0.82rem; font-weight: 300; color: rgba(242,235,217,0.45); text-decoration: none; font-style: italic; transition: color 0.2s; }
footer a:hover { color: var(--or); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 2.5rem;
  border-top: 1px solid rgba(184,145,42,0.12);
  display: flex; justify-content: space-between;
  font-family: 'Courier Prime', monospace;
  font-size: 0.54rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,235,217,0.18);
}

/* ── MODAL ── */
.modal-bg { display:none; position:fixed; inset:0; z-index:200; background:rgba(30,24,18,0.92); align-items:center; justify-content:center; }
.modal-bg.open { display:flex; }
.modal-box {
  background: var(--creme);
  max-width:540px; width:92%;
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--or);
  max-height:88vh; overflow-y:auto;
  position: relative;
}
.modal-box::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid var(--border);
  pointer-events: none; z-index: 0;
}
.modal-head { background:var(--encre); padding:1rem 1.5rem; border-bottom:1px solid rgba(184,145,42,0.3); display:flex; align-items:center; justify-content:space-between; position:relative; z-index:1; }
.modal-title { font-family:'Cinzel',serif; font-size:0.9rem; font-weight:700; letter-spacing:0.06em; color:var(--creme); }
.modal-close { background:none; border:none; font-size:1.4rem; color:rgba(201,184,138,0.5); cursor:pointer; }
.modal-close:hover { color:var(--or); }
.modal-body { padding:1.5rem; position:relative; z-index:1; }
.modal-img { height:195px; background:var(--creme-dark); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; border:1px solid var(--border-strong); }
.modal-fields { display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--border-strong); }
.mf { padding:0.65rem 0.85rem; border-bottom:1px solid var(--border); border-right:1px solid var(--border); }
.mf:nth-child(even){border-right:none}
.mf-l { font-family:'Courier Prime',monospace; font-size:0.52rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--encre-soft); margin-bottom:2px; }
.mf-v { font-size:0.88rem; color:var(--encre); }
.mf.full { grid-column:1/-1; border-right:none; }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  nav { display:none; }
  .hamburger { display:flex; }
  .main-wrap { grid-template-columns:1fr; padding:2rem 1.5rem; }
  .hero-inner { grid-template-columns: 1fr 210px; gap: 2rem; }
  .hero-stats { grid-template-columns:repeat(4,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}
@media(max-width:600px) {
  .hero { padding:2.5rem 1.25rem 2rem; }
  .hero-stats { grid-template-columns:1fr 1fr; }
  .hero-ctas { flex-direction:column; }
  .btn-or, .btn-ghost { text-align:center; }
  .search-section { padding:0.85rem 1.25rem; }
  .search-inner { flex-wrap:wrap; }
  .search-eyebrow { display:none; }
  .search-go { width:100%; }
  .flame-grid { grid-template-columns:repeat(2,1fr); gap:0.85rem; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:0.4rem; text-align:center; }
  .gallery-filters { flex-wrap:wrap; }
  .gf { border-right:1px solid var(--border-strong)!important; margin-bottom:4px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
.hero-badge { animation:fadeUp 0.5s ease both; }
.hero-title  { animation:fadeUp 0.5s 0.08s ease both; }
.hero-title-sub { animation:fadeUp 0.5s 0.14s ease both; }
.hero-rule { animation:fadeUp 0.5s 0.18s ease both; }
.hero-desc  { animation:fadeUp 0.5s 0.22s ease both; }
.hero-ctas  { animation:fadeUp 0.5s 0.28s ease both; }
.hero-stats { animation:fadeUp 0.5s 0.32s ease both; }