/* ===================================================
   ORGUES PARIS — styles.css
   Dark mode, Gold & Noir, Premium éditorial
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-deep:       #0d0d1a;
  --bg-primary:    #1a1a2e;
  --bg-card:       #1e1e35;
  --bg-hover:      #252540;
  --bg-overlay:    rgba(13, 13, 26, 0.85);
  --gold:          #c9a227;
  --gold-light:    #e8c05a;
  --gold-dark:     #9a7b1a;
  --gold-fade:     rgba(201, 162, 39, 0.15);
  --text-primary:  #f0ead6;
  --text-secondary: #b8a99a;
  --text-muted:    #6e6880;
  --border:        rgba(201, 162, 39, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-gold:   0 0 30px rgba(201, 162, 39, 0.15);
  --shadow-deep:   0 8px 40px rgba(0, 0, 0, 0.6);
  --radius:        4px;
  --radius-lg:     8px;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Lato', system-ui, sans-serif;
  --transition:    all 0.3s ease;
  --max-width:     1280px;
  --spacing-xs:    4px;
  --spacing-sm:    8px;
  --spacing-md:    16px;
  --spacing-lg:    32px;
  --spacing-xl:    64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: var(--spacing-md); color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--text-primary); line-height: 1.8; }

/* ---- Gold Accent Lines ---- */
.gold-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: var(--spacing-md);
}
.gold-line-center {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--spacing-md) auto var(--spacing-lg);
}

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--spacing-lg); }
@media (max-width: 768px) { .container { padding: 0 var(--spacing-md); } }

/* ===================================================
   NAVIGATION
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (max-width: 768px) { .nav-inner { padding: 0 var(--spacing-md); } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--gold);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: var(--spacing-xs) 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Dropdown nav */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm) 0;
  min-width: 200px;
  z-index: 100;
  box-shadow: var(--shadow-deep);
  margin-top: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.82rem;
  border-bottom: none;
  color: var(--text-secondary);
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: var(--gold-fade);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; z-index: 10001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-deep);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    z-index: 10000;
    padding: 90px var(--spacing-lg) var(--spacing-xl);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; text-align: center; border-bottom: 1px solid var(--border-subtle); }
  .nav-menu > li > a {
    display: block;
    font-size: 1.1rem;
    padding: 16px var(--spacing-md);
    border-bottom: none;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(201,162,39,0.05);
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: none;
    padding: 0 0 8px;
    margin: 0;
    text-align: center;
    min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li { border-bottom: none; }
  .nav-dropdown-menu a {
    font-size: 0.85rem;
    padding: 10px var(--spacing-md);
    border-bottom: none;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/30867428/pexels-photo-30867428.jpeg?auto=compress&cs=tinysrgb&h=650&w=940');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.22) saturate(0.5);
  transform: scale(1.05);
  transition: transform 12s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 26, 0.3) 0%,
    rgba(13, 13, 26, 0.5) 50%,
    var(--bg-deep) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--spacing-xl);
}
.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.hero-stats {
  position: absolute;
  bottom: var(--spacing-xl);
  right: var(--spacing-lg);
  z-index: 2;
  display: flex;
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .hero-stats {
    position: static;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: var(--spacing-xl) 0; }
.section-header { margin-bottom: var(--spacing-xl); }
.section-header.centered { text-align: center; }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}
.section-header h2 { margin-bottom: var(--spacing-sm); }

/* ===================================================
   CARDS
   =================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--spacing-lg);
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(480px, 100%), 1fr));
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.6);
  transition: var(--transition);
}
.card:hover .card-img {
  filter: brightness(0.9) saturate(0.85);
}
.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-placeholder svg {
  width: 64px;
  height: 64px;
  fill: var(--gold-dark);
  opacity: 0.5;
}
.card-body { padding: var(--spacing-lg); }
.card-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}
.card-arr {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
  margin-left: var(--spacing-sm);
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}
.card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}
.card-meta-item {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Featured Card */
.card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-featured .card-img {
  height: 100%;
  min-height: 300px;
}
@media (max-width: 900px) {
  .card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .card-featured .card-img { min-height: 200px; }
}

/* ===================================================
   ORGUE DETAIL PAGE
   =================================================== */
.page-hero {
  padding: calc(70px + var(--spacing-xl)) 0 var(--spacing-xl);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }

.orgue-header {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--spacing-xl);
  align-items: start;
}
@media (max-width: 900px) {
  .orgue-header { grid-template-columns: 1fr; }
}
.orgue-eglise {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}
.orgue-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}
.badge {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-fade);
}
.badge-neutral {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border-color: var(--border-subtle);
}

.orgue-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  position: sticky;
  top: 90px;
}
.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--border);
}
.sidebar-specs {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); font-weight: 700; letter-spacing: 0.03em; font-size: 0.75rem; text-transform: uppercase; }
.spec-value { color: var(--text-primary); text-align: right; font-family: var(--font-serif); }
.spec-value.gold { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--spacing-lg);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}
.faq-question:hover {
  background: var(--bg-hover);
  color: var(--gold);
}
.faq-question[aria-expanded="true"] {
  color: var(--gold);
  background: var(--gold-fade);
}
.faq-chevron {
  min-width: 18px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 var(--spacing-lg);
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===================================================
   FILTER BAR
   =================================================== */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  align-items: center;
}
.filter-bar label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: var(--spacing-xs);
}
.filter-bar select,
.filter-bar input[type="text"] {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}
.filter-bar select:hover,
.filter-bar input[type="text"]:hover,
.filter-bar select:focus,
.filter-bar input[type="text"]:focus {
  border-color: var(--gold);
}
.filter-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.filter-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: auto;
}
.filter-count strong { color: var(--gold); }

/* ===================================================
   SEARCH
   =================================================== */
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-wrap input {
  width: 100%;
  padding-left: 36px;
}
.search-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

/* ===================================================
   TIMELINE
   =================================================== */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: var(--spacing-xl);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}
.timeline-date {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===================================================
   QUOTE / PULL QUOTE
   =================================================== */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin: var(--spacing-xl) 0;
  background: var(--gold-fade);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: var(--spacing-lg);
  line-height: 1;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.pull-quote cite {
  display: block;
  margin-top: var(--spacing-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================================================
   MAP SECTION
   =================================================== */
.map-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
#map {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===================================================
   CONCERT CARD (homepage aperçu)
   =================================================== */
.concert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--spacing-lg);
  align-items: start;
  transition: var(--transition);
}
.concert-card:hover {
  border-color: var(--border);
  transform: translateX(4px);
}
.concert-date-box {
  text-align: center;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--spacing-md) var(--spacing-sm);
}
.concert-day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.concert-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.concert-info h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}
.concert-church {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
  display: block;
}
.concert-artists {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}
.concert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}
.tag {
  padding: 2px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tag-gold {
  background: var(--gold-fade);
  color: var(--gold);
  border: 1px solid var(--border);
}

/* ===================================================
   CONCERTS PAGE — Featured concerts grid
   =================================================== */
.featured-concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .featured-concerts-grid { grid-template-columns: 1fr; }
}

.featured-concert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--spacing-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.featured-concert-card::before {
  content: '★';
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  color: var(--gold);
  opacity: 0.3;
  font-size: 1.5rem;
}
.featured-concert-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.fcc-date {
  text-align: center;
  background: linear-gradient(135deg, var(--gold-fade), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--spacing-md) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fcc-day {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.fcc-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}
.fcc-year {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
}
.fcc-church {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.fcc-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.fcc-artist {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.fcc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.fcc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* ===================================================
   CONCERTS PAGE — Monthly list
   =================================================== */
.month-group { margin-bottom: var(--spacing-xl); }
.month-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.month-count {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid var(--border-subtle);
}
.concerts-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.concert-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--spacing-lg);
  transition: var(--transition);
}
.concert-full-card:hover {
  border-color: var(--border);
  transform: translateX(6px);
}
.concert-featured {
  border-color: var(--border);
  background: linear-gradient(135deg, var(--bg-hover), var(--bg-card));
}
@media (max-width: 768px) {
  .concert-full-card {
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-md);
  }
}
.cfc-date {
  text-align: center;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--spacing-md) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.cfc-day {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.cfc-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cfc-heure {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}
.cfc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 8px;
}
.cfc-church {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.cfc-arr { font-size: 0.78rem; color: var(--text-muted); }
.cfc-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
  line-height: 1.35;
}
.cfc-artist {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.cfc-programme {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cfc-programme li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.cfc-programme li::before {
  content: '♩';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.7rem;
}
.badge-free {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================================================
   YEAR SEPARATOR (concerts page)
   =================================================== */
.year-separator {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}
.year-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.year-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 700;
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--spacing-xl) 0;
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {
  background: var(--bg-card);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: var(--spacing-sm);
}

/* ===================================================
   FACTEURS SECTION
   =================================================== */
.facteur-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: var(--transition);
}
.facteur-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.facteur-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facteur-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}
.facteur-card h3 { font-size: 1.1rem; margin-bottom: var(--spacing-xs); }
.facteur-card .years {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--spacing-sm);
}
.facteur-card p { font-size: 0.85rem; }

/* ===================================================
   ARRONDISSEMENT BADGES GRID
   =================================================== */
.arr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}
.arr-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.arr-badge:hover,
.arr-badge.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-fade);
}
.arr-badge span {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ===================================================
   ORGUE HERO IMAGE
   =================================================== */
.orgue-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(0.6);
  display: block;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
}

/* ===================================================
   ARRONDISSEMENT PAGE HERO
   =================================================== */
.arr-page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 70px;
  padding-bottom: var(--spacing-xl);
  overflow: hidden;
}
.arr-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.4);
}
.arr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.2) 0%, rgba(13,13,26,0.9) 100%);
}
.arr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.arr-hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}
.arr-stat { text-align: center; }
.arr-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.arr-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ===================================================
   ARRONDISSEMENT CONTENT
   =================================================== */
.arr-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--spacing-xl);
  align-items: start;
}
@media (max-width: 900px) {
  .arr-content-grid { grid-template-columns: 1fr; }
}

.arr-anecdote {
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--spacing-md);
  align-items: start;
  margin-top: var(--spacing-lg);
}
.arr-anecdote-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arr-anecdote-icon svg { stroke: var(--bg-deep); }
.arr-anecdote-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px !important;
}

.arr-churches-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.arr-churches-list li {
  padding: 8px 12px 8px 28px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 2px solid var(--border);
}
.arr-churches-list li::before {
  content: '⛪';
  position: absolute;
  left: 8px;
  font-size: 0.75rem;
}

/* ===================================================
   ARRONDISSEMENT ORGUES LIST
   =================================================== */
.arr-orgues-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.arr-orgue-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: var(--transition);
}
.arr-orgue-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.arr-orgue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}
.arr-orgue-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.arr-orgue-nom {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.arr-orgue-eglise {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
.arr-orgue-specs {
  display: flex;
  gap: var(--spacing-md);
  flex-shrink: 0;
}
.arr-spec {
  text-align: center;
  background: var(--bg-hover);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 8px 16px;
  min-width: 0;
  flex: 1 1 70px;
}
.arr-spec-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.arr-spec-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}
.arr-orgue-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}
.arr-orgue-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-subtle);
}
.arr-orgue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.arr-meta-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.arr-meta-gold { color: var(--gold); }
.arr-sidebar { position: sticky; top: 90px; }

/* ===================================================
   CARTE PAGE
   =================================================== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
  margin-bottom: var(--spacing-lg);
}
#carte-paris {
  height: 600px;
  background: var(--bg-deep);
}
@media (max-width: 768px) {
  #carte-paris { height: 400px; }
}

.map-page-stats {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: flex-end;
}
.map-stat-item {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  min-width: 0;
  flex: 1 1 120px;
}
.map-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.map-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
}
.map-legend-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}
.map-legend-items {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.map-pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.map-pin-gold   { background: var(--gold); }
.map-pin-silver { background: #8a9bb0; }
.map-pin-outline { background: transparent; border: 2px solid var(--gold); }

/* Grille liste orgues sous la carte */
.map-organs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--spacing-md);
}
@media (max-width: 600px) {
  .map-organs-grid { grid-template-columns: 1fr; }
}

.map-organ-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.map-organ-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: inherit;
}
.map-organ-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.map-organ-arr {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.map-organ-concerts-badge {
  font-size: 0.9rem;
  color: var(--gold);
}
.map-organ-nom {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
}
.map-organ-eglise {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.map-organ-meta {
  display: flex;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===================================================
   ITINÉRAIRE CARDS
   =================================================== */
.itin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: var(--transition);
}
.itin-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.itin-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}
.itin-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.itin-duration {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  display: block;
}
.itin-steps {
  padding-left: 16px;
  margin: var(--spacing-md) 0;
  list-style: decimal;
}
.itin-steps li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
}
.itin-steps li::marker { color: var(--gold); font-weight: 700; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: var(--spacing-md);
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom a { color: var(--gold); }

/* ===================================================
   SCROLL REVEAL ANIMATION
   =================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ===================================================
   UTILITY
   =================================================== */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: var(--spacing-xl) 0;
}

/* Tuyaux decoratifs */
.pipe-decoration {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
}
.pipe-decoration span {
  display: inline-block;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 2px 2px 0 0;
  width: 4px;
}

/* ===================================================
   PAGE SPECIFIC
   =================================================== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--spacing-xl);
  align-items: start;
}
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
}

.rich-text h2 {
  font-size: 1.6rem;
  margin: var(--spacing-xl) 0 var(--spacing-md);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border-subtle);
}
.rich-text h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.rich-text h3 {
  font-size: 1.25rem;
  margin: var(--spacing-lg) 0 var(--spacing-sm);
  color: var(--gold);
}
.rich-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.rich-text ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}
.rich-text ul li {
  padding: var(--spacing-sm) 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.rich-text ul li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Sidebar sticky nav */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  position: sticky;
  top: 90px;
}
.toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
}
.toc ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.toc ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.toc ul li a::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--border);
}
.toc ul li a:hover { color: var(--gold); }
.toc ul li a:hover::before {
  background: var(--gold);
  width: 20px;
}

/* ===================================================
   NO-JS fallback
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Leaflet map dark theme override */
.leaflet-tile-pane { filter: invert(1) hue-rotate(200deg) brightness(0.8) saturate(0.7); }
.leaflet-control-zoom a {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}

/* ===================================================
   PATRIMOINE MH — Bloc dans fiche orgue
   =================================================== */
.mh-banner {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.04));
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  flex-wrap: wrap;
}
.mh-banner-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-banner-content { flex: 1; min-width: 200px; }
.mh-banner-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.mh-banner-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mh-banner-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.mh-banner-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}
.mh-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  gap: 8px;
}
.mh-meta-key {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.mh-meta-val {
  color: var(--text-primary);
  text-align: right;
}
.mh-badge-classe {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.65rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
}
.mh-badge-inscrit {
  background: rgba(138, 155, 176, 0.2);
  color: #8a9bb0;
  border: 1px solid rgba(138, 155, 176, 0.3);
  font-weight: 700;
  font-size: 0.65rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
}

/* ===================================================
   PATRIMOINE PAGE — Grille MH cards
   =================================================== */
.mh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--spacing-lg);
}
@media (max-width: 600px) {
  .mh-grid { grid-template-columns: 1fr; }
}
.mh-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.mh-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.mh-card-header {
  position: relative;
}
.mh-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mh-card-body {
  padding: var(--spacing-lg);
}

/* ===================================================
   PATRIMOINE PAGE — Stats & Timeline
   =================================================== */
.patrimoine-stat {
  text-align: center;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  min-width: 130px;
}
.ps-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}
.ps-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

.patrimoine-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  position: relative;
  padding-left: 60px;
}
.patrimoine-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
.ptl-item {
  position: relative;
  display: flex;
  gap: var(--spacing-md);
}
.ptl-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.25);
}
.ptl-year {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 50px;
  flex-shrink: 0;
}
.ptl-content strong {
  color: var(--text-primary);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}
.ptl-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===================================================
   RESTAURATION PAGE — Hero
   =================================================== */
.rest-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-top: 70px;
  padding-bottom: var(--spacing-xl);
  overflow: hidden;
}
.rest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.4);
}
.rest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.2) 0%, rgba(13,13,26,0.92) 100%);
}
.rest-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.rest-hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}
.rest-stat { text-align: center; }
.rest-stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.rest-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ===================================================
   RESTAURATION — Intro DRAC grid
   =================================================== */
.drac-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--spacing-xl);
  align-items: start;
}
@media (max-width: 960px) {
  .drac-intro-grid { grid-template-columns: 1fr; }
}
.drac-key-points {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}
.drac-point {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding: var(--spacing-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.drac-point-icon { font-size: 1.5rem; flex-shrink: 0; }
.drac-point strong { display: block; color: var(--text-primary); margin-bottom: 4px; font-size: 0.9rem; }
.drac-point p { font-size: 0.82rem; margin: 0; line-height: 1.6; }

.drac-stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}
.drac-stat-box h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--border);
}
.drac-stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.drac-stat-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.drac-stat-item:last-child { border-bottom: none; }
.drac-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 60px;
  line-height: 1;
}
.drac-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rest-news-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}
.rest-news-box h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
}
.rest-news-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.rest-news-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}
.rest-news-list li:last-child { border-bottom: none; }
.rest-news-date {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================================================
   RESTAURATION — Filtre chantiers
   =================================================== */
.rest-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}
.rest-filter-btn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.rest-filter-btn:hover,
.rest-filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-fade);
}

/* ===================================================
   RESTAURATION — Chantier cards
   =================================================== */
.chantiers-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
.chantier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: var(--transition);
}
.chantier-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
@media (max-width: 960px) {
  .chantier-card { grid-template-columns: 1fr; }
}
.chantier-img-wrap {
  position: relative;
  overflow: hidden;
}
.chantier-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.5);
  transition: var(--transition);
}
.chantier-card:hover .chantier-img {
  filter: brightness(0.75) saturate(0.7);
  transform: scale(1.03);
}
.chantier-img-overlay {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.chantier-status-badge {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
.chantier-mh-badge {
  background: rgba(201,162,39,0.25);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.chantier-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.chantier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.chantier-priorite {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.chantier-header h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.chantier-header h3 a {
  color: var(--text-primary);
}
.chantier-header h3 a:hover { color: var(--gold); }
.chantier-eglise {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.chantier-budget {
  text-align: right;
  flex-shrink: 0;
}
.chantier-budget-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.chantier-budget-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}
.chantier-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Progress bar */
.chantier-progress-wrap {
  background: var(--bg-hover);
  border-radius: var(--radius);
  padding: var(--spacing-md);
}
.chantier-progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.chantier-progress-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chantier-progress-pct {
  font-size: 0.82rem;
  font-weight: 700;
}
.chantier-progress-bar {
  height: 6px;
  background: var(--bg-deep);
  border-radius: 3px;
  overflow: hidden;
}
.chantier-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* Étapes */
.chantier-etapes {
  background: var(--bg-hover);
  border-radius: var(--radius);
  padding: var(--spacing-md);
}
.chantier-etapes-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--spacing-sm);
}
.chantier-etapes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chantier-etape {
  display: grid;
  grid-template-columns: 12px 100px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
}
.etape-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chantier-etape.done .etape-dot { background: #34a853; }
.chantier-etape.pending .etape-dot { background: var(--border); }
.etape-date {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.chantier-etape.done .etape-label { color: var(--text-secondary); }
.chantier-etape.pending .etape-label { color: var(--text-muted); }

/* Footer chantier */
.chantier-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-subtle);
}
.chantier-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}
.chantier-meta-val {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.chantier-finance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.chantier-finance-tag {
  padding: 2px 8px;
  background: var(--gold-fade);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.chantier-footer .btn { margin-left: auto; }

/* ===================================================
   RESTAURATION — Notre-Dame Focus
   =================================================== */
.nd-focus-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--spacing-xl);
  align-items: start;
}
@media (max-width: 960px) {
  .nd-focus-grid { grid-template-columns: 1fr; }
}
.nd-focus-content h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin: var(--spacing-lg) 0 var(--spacing-sm);
}
.nd-timeline-box,
.nd-facts-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}
.nd-timeline-box h4,
.nd-facts-box h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--border);
}
.nd-timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nd-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
}
.nd-step:last-child { border-bottom: none; }
.nd-step-date {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}
.nd-step.done .nd-step-label { color: var(--text-secondary); }
.nd-step.pending .nd-step-label { color: var(--text-muted); font-style: italic; }
.nd-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}
.nd-fact { text-align: center; }
.nd-fact-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.nd-fact-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

/* ===================================================
   RESTAURATION — Manufactures agréées
   =================================================== */
.manufacture-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: var(--transition);
}
.manufacture-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.manufacture-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}
.manufacture-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-hover);
  padding: 2px 8px;
  border-radius: 2px;
}
.manufacture-epv {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-fade);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 2px;
}
.manufacture-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.manufacture-spec {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}
.manufacture-card > p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}
.manufacture-refs {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: var(--spacing-sm);
  background: var(--bg-hover);
  border-radius: var(--radius);
  margin-top: var(--spacing-sm);
}
.manufacture-refs strong {
  color: var(--text-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

/* ===================================================
   RESPONSIVE — Additional mobile fixes
   =================================================== */
@media (min-width: 769px) {
  .hero-grid-carte { grid-template-columns: 1fr 320px; }
  .edito-grid { grid-template-columns: 1fr 1fr; }
}

/* Responsive 2-col grids → stack on mobile */
.grid-2-responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}
@media (max-width: 768px) {
  .grid-2-responsive { grid-template-columns: 1fr; }
}

/* Organiste card with image */
@media (max-width: 600px) {
  .organiste-card { grid-template-columns: 1fr !important; }
  .organiste-card img { height: 200px; width: 100%; }
  .compare-table { grid-template-columns: auto 1fr 1fr !important; }
  .compare-table > div { padding: 8px !important; font-size: 0.75rem !important; }
  .map-page-stats { flex-direction: column; }
  .map-stat-item { min-width: 0; }
}