/* ============================================
   MEMORIAL237 — STYLESHEET COMMUN
   L'excellence au service de la dignité
   ============================================ */

:root {
  --navy: #0F1C2E;
  --navy-light: #1E3A5F;
  --navy-deeper: #080F1A;
  --gold: #C8A24D;
  --gold-dark: #B8913E;
  --gold-light: #D4B66B;
  --white: #FFFFFF;
  --off-white: #F5F5F2;
  --cream: #FAF8F3;
  --text: #2B2B2B;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: #E0E0E0;
  --success: #4CAF50;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,28,46,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(200,162,77,0.2);
}

.nav-brand { display: flex; flex-direction: column; text-decoration: none; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-brand-tag {
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 22px;
  font-size: 0.72rem !important;
  letter-spacing: 0.15em !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  width: 24px; height: 1px; background: var(--white);
  display: block; transition: all 0.3s;
}

/* Dropdown nav */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--navy); border: 1px solid rgba(200,162,77,0.2);
  padding: 12px 0; min-width: 240px;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.72rem; letter-spacing: 0.1em;
}

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.18;
  object-fit: cover; width: 100%; height: 100%;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(200,162,77,0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(15,28,46,0.7) 0%, rgba(15,28,46,0.95) 100%);
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }

.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 24px;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-phone {
  margin: 0 auto 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  opacity: 0; animation: fadeUp 1s 1s forwards;
}
.hero-phone strong { color: var(--gold); font-weight: 500; font-size: 1.1rem; letter-spacing: 0.08em; }

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}

.hero-available {
  margin-top: 60px;
  display: flex; align-items: center; gap: 10px; justify-content: center;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-available span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   PAGE HEADER (intérieures)
   ============================================ */
.page-header {
  background: var(--navy);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.15; object-fit: cover; width: 100%; height: 100%;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,28,46,0.6) 0%, rgba(15,28,46,0.95) 100%);
  z-index: 1;
}
.page-header > * { position: relative; z-index: 2; }
.page-header .breadcrumbs { margin-bottom: 24px; }
.page-header-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  max-width: 880px;
  margin: 0 auto 20px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header .lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.page-header .header-phone {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(200,162,77,0.4);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}
.page-header .header-phone:hover { background: var(--gold); color: var(--navy); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumbs a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 10px; color: var(--gold); opacity: 0.5; }
.breadcrumbs [aria-current="page"] { color: var(--gold); }

/* ============================================
   STRIP
   ============================================ */
.strip {
  background: var(--gold);
  padding: 18px 40px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.strip-item {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.strip-item::before { content: '◆'; font-size: 0.45rem; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--gold);
  opacity: 0.3; max-width: 80px;
}
.section-label.centered { justify-content: center; }
.section-label.centered::after { display: none; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 620px;
}

/* Dark variants */
.bg-navy { background: var(--navy); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-text { color: rgba(255,255,255,0.6); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 60px;
  border: 1px solid rgba(200,162,77,0.15);
}
.service-card {
  padding: 44px 36px;
  border: 1px solid rgba(200,162,77,0.1);
  transition: background 0.4s;
  cursor: default;
}
.service-card:hover { background: rgba(200,162,77,0.05); }
.service-icon { font-size: 1.8rem; margin-bottom: 20px; display: block; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.service-card .service-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.service-card .service-link:hover { border-color: var(--gold); }

/* Service cards light variant */
.services-grid-light .service-card { background: var(--white); border-color: var(--border); }
.services-grid-light .service-card:hover { background: var(--cream); }
.services-grid-light .service-card h3 { color: var(--navy); }
.services-grid-light .service-card p { color: var(--text-muted); }

/* ============================================
   ARTICLE / PROSE
   ============================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}
.prose > * + * { margin-top: 1.4em; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-top: 2.5em;
  line-height: 1.3;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2em;
}
.prose h4 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-top: 1.6em;
}
.prose p { color: var(--text); }
.prose strong { color: var(--navy); font-weight: 500; }
.prose a { color: var(--gold-dark); text-decoration: underline; text-decoration-color: rgba(200,162,77,0.4); text-underline-offset: 3px; transition: color 0.3s; }
.prose a:hover { color: var(--navy); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }
.prose ul li::marker { color: var(--gold); }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 24px;
  margin: 2em 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  background: var(--cream);
}
.prose img {
  border-radius: 2px;
  margin: 2em 0;
}
.prose figure { margin: 2.5em 0; }
.prose figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}
.prose hr { border: none; height: 1px; background: var(--border); margin: 3em 0; }

/* Tables */
.prose table, .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.92rem;
  background: var(--white);
}
.prose th, .prose td, .data-table th, .data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.prose th, .data-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prose tr:hover, .data-table tr:hover { background: var(--cream); }
.prose td strong { color: var(--gold-dark); }

/* Info callout box */
.callout {
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  margin: 2em 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}
.callout strong { color: var(--navy); }
.callout-dark {
  padding: 32px;
  border: 1px solid rgba(200,162,77,0.3);
  background: rgba(200,162,77,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}
.callout-dark strong { color: var(--gold); }

/* Phone callout */
.phone-callout {
  margin: 2em 0;
  padding: 32px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.phone-callout p { color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.phone-callout .phone-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.phone-callout .phone-number a { color: var(--gold); text-decoration: none; }
.phone-callout small { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================
   CITY CARDS
   ============================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.city-card {
  background: var(--navy);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.city-card:hover { transform: translateY(-4px); }
.city-card::before {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(200,162,77,0.1), transparent 70%);
}
.city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--white);
  font-weight: 300; margin-bottom: 8px;
}
.city-role {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.city-services { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.city-services li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 10px;
}
.city-services li::before {
  content: '–';
  color: var(--gold);
  font-size: 0.7rem;
}
.city-link {
  display: inline-block;
  margin-top: 28px;
  background: transparent;
  border: 1px solid rgba(200,162,77,0.4);
  padding: 10px 20px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}
.city-link:hover { background: var(--gold); color: var(--navy); }

/* ============================================
   PRIX CARDS
   ============================================ */
.prix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.prix-card {
  padding: 36px 30px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.prix-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200,162,77,0.08);
}
.prix-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.prix-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 20px;
}
.prix-range {
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 16px;
}
.prix-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prix-items li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex; justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.prix-items li:last-child { border-bottom: none; }
.prix-items li span { color: var(--text); font-weight: 400; }

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(200,162,77,0.15);
}
.step {
  padding: 40px 28px;
  border-right: 1px solid rgba(200,162,77,0.12);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(200,162,77,0.25);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}
.step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* Light variant for steps */
.steps-grid-light { border-color: var(--border); }
.steps-grid-light .step { border-right-color: var(--border); }
.steps-grid-light .step h4 { color: var(--navy); }
.steps-grid-light .step p { color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  margin-top: 60px;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 400;
  transition: background 0.2s;
  line-height: 1.5;
}
.faq-question:hover { background: rgba(200,162,77,0.04); }
.faq-question .arrow {
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 300;
}
.faq-item.open .arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner {
  padding: 0 32px 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.faq-answer-inner p + p { margin-top: 1em; }
.faq-answer-inner strong { color: var(--navy); }

/* ============================================
   VALUE ITEMS / ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.about-values {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 48px;
}
.value-item {
  display: flex; gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  min-width: 36px;
}
.value-content h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-quote {
  background: var(--navy);
  padding: 48px;
  color: var(--white);
}
.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 24px;
}
.about-quote cite {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 1px;
  background: rgba(200,162,77,0.15);
}
.stat-box {
  background: var(--navy);
  padding: 28px 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.3;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(200,162,77,0.1);
  border: 1px solid rgba(200,162,77,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-text { display: flex; flex-direction: column; }
.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-value { font-size: 0.95rem; color: var(--white); }
.contact-item-value a { color: var(--white); text-decoration: none; }

.contact-urgence {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(200,162,77,0.3);
  background: rgba(200,162,77,0.04);
}
.contact-urgence p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.contact-urgence strong { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; font-family: 'Jost', sans-serif; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-form {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-form:hover { background: var(--gold-dark); color: var(--white); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--whatsapp);
  color: var(--white) !important;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
  justify-content: center;
}
.whatsapp-btn:hover { background: var(--whatsapp-dark); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--navy-deeper); padding: 60px 40px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 280px;
}
.footer-phone-block {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.footer-phone-block strong { color: var(--gold); font-weight: 500; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-domain {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}
.footer-domain a { color: var(--gold); text-decoration: none; }

/* ============================================
   STICKY CTA (bottom-right)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.sticky-phone {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200,162,77,0.3);
}
.sticky-phone:hover { background: var(--gold-dark); }
.sticky-wa {
  background: var(--whatsapp);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.2);
}
.sticky-wa:hover { background: var(--whatsapp-dark); }

/* ============================================
   URGENCE BANNER
   ============================================ */
.urgence-banner {
  background: linear-gradient(135deg, #8B0000 0%, #5C0000 100%);
  color: var(--white);
  padding: 14px 40px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.urgence-banner a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,162,77,0.4);
}
.urgence-banner strong { font-weight: 500; }

/* ============================================
   IMAGE FIGURE / GALLERY
   ============================================ */
.feature-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin: 0;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.image-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s;
}
.image-card:hover { transform: translateY(-4px); }
.image-card img {
  width: 100%; height: 240px; object-fit: cover;
}
.image-card .image-card-body { padding: 24px 28px; }
.image-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 10px;
}
.image-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(200,162,77,0.2);
  }
  .nav-links.open .nav-cta { width: 100%; text-align: center; }
  section { padding: 60px 24px; }
  .page-header { padding: 110px 24px 60px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .strip { gap: 20px; justify-content: flex-start; padding: 18px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline, .btn-outline-dark { width: 100%; max-width: 320px; text-align: center; }
  .feature-image { height: 280px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .prix-grid { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 16px; right: 16px; }
  .sticky-phone, .sticky-wa { padding: 10px 14px; font-size: 0.7rem; }
  .urgence-banner { font-size: 0.78rem; padding: 12px 20px; }
  .strip { padding: 14px 20px; }
  .strip-item { font-size: 0.62rem; }
  .about-quote { padding: 32px 24px; }
  .phone-callout .phone-number { font-size: 1.8rem; }
}

@media (min-width: 901px) {
  .nav-mobile-only { display: none; }
}

/* Print-friendly (essentiel pour les obsèques) */
@media print {
  nav, .sticky-cta, .urgence-banner, .strip, .hero-bg-image { display: none !important; }
  body { background: white; color: black; }
  .hero, .page-header { background: white; color: black; padding-top: 40px; }
  .hero h1, .page-header h1 { color: black; }
  a { color: black; text-decoration: underline; }
}

/* ============================================
   PAGE-SPECIFIC : YAOUNDÉ
   Capitale politique — accent vert protocole
   ============================================ */
:root {
  --page-accent: #4A5D3A;
  --page-accent-light: #6B7D5A;
}
.page-header::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(74,93,58,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,28,46,0.65) 0%, rgba(15,28,46,0.95) 100%);
}
.about-grid .prose h3 {
  position: relative;
  padding-left: 18px;
}
.about-grid .prose h3::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 4px; height: 22px;
  background: var(--gold);
}
.prose table tr:hover { background: rgba(74,93,58,0.06); }
.city-card { position: relative; transition: all 0.4s ease; }
.city-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.city-card:hover { transform: translateY(-6px); }
.city-card:hover::after { opacity: 0.9; }
