/* ============================================================
   OMRA360 · Feuille de style commune
   Typographie : DM Serif Display + Fraunces + Inter + Amiri
   ============================================================ */

:root {
  --night: #0a1530;
  --night-deep: #050a1c;
  --night-blue: #1e2952;
  --emerald: #1a4d3e;
  --emerald-deep: #0d2e22;
  --gold: #b8893d;
  --gold-light: #d4b860;
  --gold-pale: #e8d3a0;
  --cream: #f5efe0;
  --cream-warm: #ede4d0;
  --ivory: #faf6ed;
  --ottoman: #8b3a2b;
  --iznik: #2d6e8e;
  --text: #1f1a13;
  --text-muted: #6b6256;
  --text-light: #998d7d;
  --border: rgba(184, 137, 61, 0.22);
  --border-soft: rgba(184, 137, 61, 0.12);

  --font-display: 'DM Serif Display', 'Times New Roman', serif;
  --font-body: 'Fraunces', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  --font-arabic: 'Amiri', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 350;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "opsz" 14, "SOFT" 50;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--night); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 1.05;
  color: var(--night);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.section-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
  padding: 28px 0;
}

.site-header.solid,
.site-header.scrolled {
  background: rgba(250, 246, 237, 0.94);
  backdrop-filter: blur(14px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border-soft);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-mark .ring,
.logo-mark .center {
  transition: stroke 0.5s ease, fill 0.5s ease;
}

.site-header:not(.scrolled):not(.solid) .logo-mark .ring { stroke: var(--cream); }
.site-header:not(.scrolled):not(.solid) .logo-mark .center { fill: var(--cream); }
.site-header.scrolled .logo-mark .ring,
.site-header.solid .logo-mark .ring { stroke: var(--night); }
.site-header.scrolled .logo-mark .center,
.site-header.solid .logo-mark .center { fill: var(--night); }

.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.5s ease;
}

.site-header.scrolled .logo-text,
.site-header.solid .logo-text { color: var(--night); }

.logo-360 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-light);
  margin-left: 4px;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.4s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.4s ease;
}

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

.site-header.scrolled .nav-link,
.site-header.solid .nav-link { color: var(--text); }
.site-header.scrolled .nav-link::after,
.site-header.solid .nav-link::after { background: var(--gold); }

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
}

.site-header.scrolled .menu-btn,
.site-header.solid .menu-btn { color: var(--night); }

/* ============================================================
   HERO HOMEPAGE
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--night-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-scene svg {
  width: 100%;
  height: 100%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(10,21,48,0) 0%, rgba(10,21,48,0.35) 50%, rgba(5,10,28,0.85) 100%),
    linear-gradient(180deg, rgba(10,21,48,0) 50%, rgba(5,10,28,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 32px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(28px, 4vw, 46px);
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0;
  direction: rtl;
  animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  letter-spacing: 1px;
}

.hero-translit {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--gold-pale);
  letter-spacing: 2px;
  margin-bottom: 36px;
  opacity: 0;
  text-transform: uppercase;
  animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 124px);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  max-width: 1100px;
  opacity: 0;
  animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.hero-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: dividerExpand 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--cream);
  opacity: 0;
  max-width: 580px;
  line-height: 1.6;
  animation: heroFadeUpSubtle 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUpSubtle {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 0.85; transform: translateY(0); }
}

@keyframes dividerExpand {
  to { opacity: 1; transform: scaleX(1); }
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-pale);
  opacity: 0;
  animation: heroFadeUpSubtle 1.4s ease 1.8s forwards;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   PAGE HEROES (compactes, pour pages internes)
   ============================================================ */

.page-hero {
  position: relative;
  background: var(--night);
  color: var(--cream);
  padding: 180px 32px 100px;
  overflow: hidden;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--gold-light);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 900px;
}

.page-hero-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--gold-pale);
  opacity: 0.85;
  max-width: 640px;
}

/* ============================================================
   THRESHOLD (homepage)
   ============================================================ */

.threshold {
  background: var(--ivory);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}

.threshold-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.05;
  pointer-events: none;
}

.threshold-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.threshold-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  color: var(--night);
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}

.threshold-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.threshold-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   SEARCH BAR (homepage)
   ============================================================ */

.search-section {
  background: var(--ivory);
  padding: 0 32px 100px;
}

.search-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: stretch;
  box-shadow: 0 30px 80px -20px rgba(10, 21, 48, 0.18);
  overflow: hidden;
}

.search-field {
  padding: 22px 28px;
  border-right: 1px solid var(--border-soft);
  cursor: pointer;
  transition: background 0.3s ease;
  background: var(--ivory);
}

.search-field:hover { background: var(--cream-warm); }
.search-field:nth-child(3) { border-right: none; }

.search-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

.search-value {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--night);
  font-weight: 400;
}

.search-cta {
  background: var(--night);
  color: var(--cream);
  padding: 0 36px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-cta:hover { background: var(--emerald); }

/* ============================================================
   STATS (homepage)
   ============================================================ */

.stats {
  background: var(--ivory);
  padding: 60px 32px 120px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.stat:last-child { border-right: none; }
.stat.visible { opacity: 1; transform: translateY(0); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--night);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.stat-num-suffix {
  color: var(--gold);
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
  letter-spacing: 0;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

/* ============================================================
   EDITORIAL GRID (homepage)
   ============================================================ */

.editorial {
  padding: 140px 32px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.editorial-pattern {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  opacity: 0.06;
  pointer-events: none;
}

.editorial-header {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.editorial-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.article {
  background: var(--ivory);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.article.visible { opacity: 1; transform: translateY(0); }
.article-large { grid-row: span 2; }

.article-img {
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.article-large .article-img { height: 480px; }
.article-small .article-img { height: 220px; }

.article-img svg {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.article:hover .article-img svg { transform: scale(1.05); }

.article-body {
  padding: 32px;
}

.article-large .article-body { padding: 40px; }

.article-cat {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--night);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.article-large .article-title {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 20px;
}

.article-excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.article-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.article-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   JOURNEY MAP (homepage)
   ============================================================ */

.journey {
  padding: 140px 32px;
  background: var(--night);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.journey-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.journey-header {
  max-width: 880px;
  margin: 0 auto 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.journey-header .section-title { color: var(--cream); }
.journey-header .section-title em { color: var(--gold-light); }
.journey-header .section-sub { color: var(--gold-pale); opacity: 0.85; }

.journey-map {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: start;
}

.journey-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-step.visible { opacity: 1; transform: translateY(0); }

.journey-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184, 137, 61, 0.2) 100%);
}

.journey-step:last-child::after { display: none; }

.journey-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(212, 184, 96, 0.08);
  border: 1px solid rgba(212, 184, 96, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 22px;
}

.journey-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.journey-name-arabic {
  font-family: var(--font-arabic);
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 12px;
  direction: rtl;
}

.journey-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--gold-pale);
  opacity: 0.8;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONY (homepage)
   ============================================================ */

.testimony {
  padding: 160px 32px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimony-quote-mark {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimony-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimony-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.4;
  color: var(--night);
  margin-bottom: 48px;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.testimony-text strong {
  font-weight: 500;
  font-style: normal;
  color: var(--ottoman);
}

.testimony-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimony-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.testimony-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--night);
  letter-spacing: 0.01em;
}

.testimony-context {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   SCORE (homepage)
   ============================================================ */

.score {
  padding: 140px 32px;
  background: var(--emerald-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.score-pattern {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  opacity: 0.05;
  pointer-events: none;
}

.score-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.score-content .eyebrow { color: var(--gold-light); }
.score-content .section-title {
  color: var(--cream);
  text-align: left;
  margin-bottom: 28px;
}
.score-content .section-title em { color: var(--gold-light); }

.score-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 32px;
}

.score-criteria {
  list-style: none;
  margin-top: 32px;
}

.score-criteria li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(212, 184, 96, 0.15);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream);
  font-weight: 300;
}

.score-criteria li:last-child { border-bottom: 1px solid rgba(212, 184, 96, 0.15); }

.score-criteria-num {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 32px;
}

.score-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-circle {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

/* ============================================================
   COMMITTEE (homepage)
   ============================================================ */

.committee {
  padding: 160px 32px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.committee-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.committee-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(36px, 5.2vw, 60px);
  color: var(--gold);
  margin-bottom: 28px;
  direction: rtl;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.committee-arabic.visible { opacity: 0.9; transform: translateY(0); }

.committee-translit {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 64px;
  text-transform: uppercase;
}

.committee-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--night);
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}

.committee-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 24px;
}

.committee-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ottoman);
  font-weight: 500;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s ease;
  text-transform: uppercase;
}

.committee-link:hover { gap: 18px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  padding: 160px 32px;
  background: var(--night);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter .eyebrow { color: var(--gold-light); }

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 52px);
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.newsletter h2 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.newsletter-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(212, 184, 96, 0.4);
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
}

.newsletter-input::placeholder {
  color: var(--gold-pale);
  opacity: 0.5;
  font-style: italic;
}

.newsletter-input:focus { outline: none; }

.newsletter-btn {
  background: var(--gold);
  color: var(--night);
  padding: 18px 32px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.newsletter-btn:hover { background: var(--gold-light); }

.newsletter-note {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-top: 24px;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--night-deep);
  color: var(--cream);
  padding: 100px 32px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 184, 96, 0.15);
  margin-bottom: 32px;
}

.footer-brand .logo { margin-bottom: 24px; }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand .logo-mark .ring { stroke: var(--cream); }
.footer-brand .logo-mark .center { fill: var(--cream); }

.footer-brand-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }

.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-col a:hover { opacity: 1; color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.5;
  text-transform: uppercase;
}

.footer-bottom-links { display: flex; gap: 28px; }

/* ============================================================
   COMPARATEUR (agences.html)
   ============================================================ */

.comparator {
  padding: 80px 32px 120px;
  background: var(--ivory);
}

.comparator-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 100px;
  padding: 32px 0;
}

.filters-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-label {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--night);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 350;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.filter-check:hover { color: var(--night); }

.filter-check input {
  width: 14px;
  height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
}

.filter-count {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
}

.filter-range {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.filter-range-input {
  width: 100%;
  accent-color: var(--gold);
}

.filter-range-vals {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
}

.filter-reset {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ottoman);
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.filter-reset:hover { color: var(--night); }

.results {
  min-height: 600px;
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.results-count {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}

.results-count strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--night);
  font-weight: 400;
  margin-right: 6px;
}

.results-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.results-sort select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--night);
  border: 1px solid var(--border);
  background: var(--ivory);
  padding: 8px 12px;
  border-radius: 3px;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 0;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.offer.visible {
  opacity: 1;
  transform: translateY(0);
}

.offer:hover {
  box-shadow: 0 16px 40px -10px rgba(10, 21, 48, 0.15);
  transform: translateY(-2px);
  border-color: rgba(184, 137, 61, 0.4);
}

.offer-img {
  position: relative;
  background: var(--night);
  overflow: hidden;
}

.offer-img svg {
  width: 100%;
  height: 100%;
  display: block;
}

.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 21, 48, 0.85);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 6px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.offer-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-agency {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--night);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.offer-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
}

.offer-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.offer-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-meta-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.offer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.offer-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: var(--cream-warm);
  color: var(--text-muted);
  border-radius: 2px;
  text-transform: uppercase;
}

.offer-side {
  padding: 28px 32px;
  border-left: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 220px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.offer-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.offer-score-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer-score-num small {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
}

.offer-score-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 4px;
}

.offer-price-from {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}

.offer-price-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--night);
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer-price-num small {
  font-size: 18px;
  color: var(--text-muted);
}

.offer-cta {
  background: var(--night);
  color: var(--cream);
  padding: 12px 22px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.offer-cta:hover { background: var(--emerald); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.pagination-btn {
  font-family: var(--font-display);
  font-size: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.pagination-btn.active {
  background: var(--night);
  color: var(--cream);
  border-color: var(--night);
}

.pagination-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--night);
}

/* ============================================================
   FICHE AGENCE (agence.html)
   ============================================================ */

.agency-banner {
  background: var(--night);
  color: var(--cream);
  padding: 160px 32px 80px;
  position: relative;
  overflow: hidden;
}

.agency-banner-pattern {
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  opacity: 0.06;
  pointer-events: none;
}

.agency-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.agency-breadcrumb {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-pale);
  opacity: 0.7;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.agency-breadcrumb a { color: var(--gold-light); }

.agency-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.agency-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.5;
}

.agency-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold-pale);
  opacity: 0.85;
}

.agency-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.agency-score-card {
  background: var(--emerald-deep);
  border: 1px solid rgba(212, 184, 96, 0.3);
  padding: 32px 40px;
  text-align: center;
  border-radius: 4px;
  min-width: 240px;
}

.agency-score-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.04em;
}

.agency-score-num small {
  font-size: 28px;
  color: var(--gold-pale);
  opacity: 0.7;
}

.agency-score-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold-pale);
  margin-top: 6px;
  text-transform: uppercase;
}

.agency-score-tier {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  margin-top: 12px;
}

.agency-section {
  padding: 100px 32px;
  background: var(--ivory);
}

.agency-section.alt { background: var(--cream); }

.agency-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.agency-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--night);
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}

.agency-about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.agency-about-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 350;
}

.agency-about-text p { margin-bottom: 18px; }

.agency-credentials {
  background: var(--cream);
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
}

.agency-credentials h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential-item {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.credential-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--emerald);
}

.credential-name {
  font-weight: 500;
  color: var(--night);
  display: block;
  margin-bottom: 2px;
}

.credential-id {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.agency-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.agency-offer-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.agency-offer-card:hover {
  box-shadow: 0 14px 36px -10px rgba(10,21,48,0.15);
  transform: translateY(-3px);
}

.agency-offer-card-img {
  height: 180px;
  background: var(--night);
}

.agency-offer-card-img svg {
  width: 100%;
  height: 100%;
}

.agency-offer-card-body {
  padding: 24px;
}

.agency-offer-card-period {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.agency-offer-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--night);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.agency-offer-card-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.agency-offer-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.agency-offer-card-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--night);
  letter-spacing: -0.02em;
}

.agency-offer-card-price small {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-right: 4px;
  text-transform: uppercase;
}

.agency-offer-card-link {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ottoman);
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 32px;
  position: relative;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--night);
  letter-spacing: -0.005em;
}

.review-context {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 2px;
  text-transform: uppercase;
}

.review-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--emerald);
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(26, 77, 62, 0.08);
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.review-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--night);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 350;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

/* Q&A */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qa-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}

.qa-item:first-child { border-top: 1px solid var(--border-soft); }

.qa-question {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--night);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.qa-author {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.qa-answer {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  padding: 18px 22px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  border-radius: 0 3px 3px 0;
  font-weight: 350;
}

.qa-answer-from {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.agency-cta-band {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 80px 32px;
  text-align: center;
}

.agency-cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.agency-cta-band h3 em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold-light);
}

.agency-cta-band p {
  font-family: var(--font-body);
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.agency-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(212, 184, 96, 0.5);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ============================================================
   ARTICLE EDITORIAL (article.html)
   ============================================================ */

.article-hero {
  background: var(--night);
  color: var(--cream);
  padding: 160px 32px 80px;
  position: relative;
  overflow: hidden;
}

.article-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.article-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.article-hero-cat {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.article-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.article-hero-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.article-hero-deck {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold-pale);
  line-height: 1.5;
  margin-bottom: 32px;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold-pale);
  opacity: 0.7;
  text-transform: uppercase;
}

.article-hero-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.article-body-wrap {
  background: var(--ivory);
  padding: 100px 32px 120px;
}

.article-body-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 110px;
  font-family: var(--font-ui);
  font-size: 13px;
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

.article-toc-title {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.article-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.article-toc a {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 350;
  transition: color 0.2s ease;
  line-height: 1.4;
  display: block;
}

.article-toc a:hover,
.article-toc a.active { color: var(--ottoman); }

.article-content {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 350;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--night);
  margin: 64px 0 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--night);
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}

.article-content p { margin-bottom: 22px; }

.article-content p.lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--night);
  font-weight: 400;
  margin-bottom: 32px;
}

.article-content p.lead::first-letter {
  font-family: var(--font-display);
  font-size: 76px;
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  color: var(--ottoman);
}

.article-content blockquote {
  margin: 40px 0;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--night);
}

.article-content blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.article-content .arabic-verse {
  font-family: var(--font-arabic);
  font-size: 30px;
  color: var(--ottoman);
  text-align: center;
  margin: 40px 0 12px;
  direction: rtl;
  line-height: 1.6;
}

.article-content .arabic-translit {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
}

.article-content li { margin-bottom: 8px; }

.article-content strong {
  font-weight: 500;
  color: var(--night);
}

.article-sources {
  background: var(--cream);
  padding: 40px;
  margin: 64px 0;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.article-sources h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.article-sources ol {
  list-style: none;
  counter-reset: src;
  margin: 0;
}

.article-sources li {
  counter-increment: src;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.article-sources li::before {
  content: counter(src);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 14px;
}

.article-related {
  background: var(--cream);
  padding: 100px 32px;
}

.article-related-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.article-related-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--night);
  margin-bottom: 48px;
  letter-spacing: -0.015em;
}

.article-related-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   PAGES ÉDITORIALES (omra.html, hajj.html, guide.html)
   ============================================================ */

.content-section {
  padding: 110px 32px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.content-section.alt { background: var(--cream); }

.content-section.dark {
  background: var(--night);
  color: var(--cream);
}

.content-section.dark .agency-section-title { color: var(--cream); }
.content-section.dark .agency-section-title em,
.content-section.dark .section-title em { color: var(--gold-light); }

.content-section.emerald {
  background: var(--emerald-deep);
  color: var(--cream);
}

.content-section.emerald .agency-section-title { color: var(--cream); }
.content-section.emerald .agency-section-title em,
.content-section.emerald .section-title em { color: var(--gold-light); }

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-inner-narrow {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-lead {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ottoman);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.content-section.dark .content-lead,
.content-section.emerald .content-lead { color: var(--gold-light); }

.content-text {
  font-family: var(--font-body);
  font-weight: 350;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.content-text p { margin-bottom: 20px; }
.content-text strong { font-weight: 500; color: var(--night); }
.content-text em { font-style: italic; color: var(--ottoman); }

.content-section.dark .content-text,
.content-section.emerald .content-text { color: var(--cream); opacity: 0.85; }

.content-section.dark .content-text strong,
.content-section.emerald .content-text strong { color: var(--cream); opacity: 1; }

.content-section.dark .content-text em,
.content-section.emerald .content-text em { color: var(--gold-light); }

.content-grid {
  display: grid;
  gap: 28px;
  margin-top: 56px;
}

.content-grid-2 { grid-template-columns: 1fr 1fr; }
.content-grid-3 { grid-template-columns: repeat(3, 1fr); }
.content-grid-4 { grid-template-columns: repeat(4, 1fr); }

.content-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  padding: 36px 32px;
  border-radius: 4px;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.content-card:hover {
  box-shadow: 0 14px 36px -10px rgba(10, 21, 48, 0.12);
  border-color: rgba(184, 137, 61, 0.4);
  transform: translateY(-2px);
}

.content-section.alt .content-card { background: var(--ivory); }

.content-section.dark .content-card,
.content-section.emerald .content-card {
  background: rgba(212, 184, 96, 0.04);
  border-color: rgba(212, 184, 96, 0.18);
}

.content-card-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.content-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--night);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.content-card-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
}

.content-section.dark .content-card-title,
.content-section.emerald .content-card-title { color: var(--cream); }

.content-section.dark .content-card-title em,
.content-section.emerald .content-card-title em { color: var(--gold-light); }

.content-card-text {
  font-family: var(--font-body);
  font-weight: 350;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.content-section.dark .content-card-text,
.content-section.emerald .content-card-text {
  color: var(--gold-pale);
  opacity: 0.8;
}

.content-card-arabic {
  font-family: var(--font-arabic);
  font-size: 22px;
  color: var(--gold);
  direction: rtl;
  margin-bottom: 12px;
  display: block;
}

.content-section.dark .content-card-arabic,
.content-section.emerald .content-card-arabic { color: var(--gold-light); }

.content-card-list {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}

.content-card-list li {
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.content-card-list li:last-child { border-bottom: none; }

.content-card-list strong {
  color: var(--night);
  font-weight: 500;
}

.content-section.dark .content-card-list li,
.content-section.emerald .content-card-list li {
  border-color: rgba(212, 184, 96, 0.15);
  color: var(--gold-pale);
  opacity: 0.85;
}

.content-section.dark .content-card-list strong,
.content-section.emerald .content-card-list strong { color: var(--cream); opacity: 1; }

/* Timeline / step cards (jours du Hajj, étapes du voyage) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}

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

.content-section.dark .timeline-item,
.content-section.emerald .timeline-item {
  border-color: rgba(212, 184, 96, 0.15);
}

.timeline-day {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.timeline-day-num {
  display: block;
  font-size: 56px;
  line-height: 1;
  color: var(--night);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.content-section.dark .timeline-day-num,
.content-section.emerald .timeline-day-num { color: var(--cream); }

.timeline-day-arabic {
  font-family: var(--font-arabic);
  font-size: 16px;
  color: var(--gold);
  direction: rtl;
  margin-top: 6px;
  display: block;
}

.timeline-content {
  padding-top: 8px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--night);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.timeline-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
}

.content-section.dark .timeline-title,
.content-section.emerald .timeline-title { color: var(--cream); }

.content-section.dark .timeline-title em,
.content-section.emerald .timeline-title em { color: var(--gold-light); }

.timeline-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 350;
}

.content-section.dark .timeline-text,
.content-section.emerald .timeline-text {
  color: var(--gold-pale);
  opacity: 0.85;
}

/* FAQ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border-soft); }

.faq-q {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--night);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq-q em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
}

.faq-a {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 350;
}

.faq-a strong { color: var(--night); font-weight: 500; }

/* Pricing tiers (gammes Omra/Hajj) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  padding: 40px 32px;
  border-radius: 4px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 18px 40px -12px rgba(184, 137, 61, 0.25);
}

.pricing-card:hover {
  box-shadow: 0 18px 40px -12px rgba(10, 21, 48, 0.15);
  transform: translateY(-3px);
}

.pricing-card.featured:hover {
  box-shadow: 0 22px 48px -12px rgba(184, 137, 61, 0.32);
}

.pricing-tier {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--night);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.pricing-name em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--ottoman);
}

.pricing-range {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--night);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 18px 0 6px;
}

.pricing-range small {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
  margin-left: 4px;
}

.pricing-from {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.pricing-list {
  list-style: none;
  padding: 24px 0 0;
  border-top: 1px solid var(--border-soft);
}

.pricing-list li {
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  font-weight: 350;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-list li::before {
  content: '·';
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  margin-top: -4px;
}

/* CTA inline (boutons centraux dans pages éditoriales) */
.content-cta-inline {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .comparator-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .filters {
    position: static;
    padding: 24px;
    background: var(--cream);
    border-radius: 4px;
  }
  .article-body-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .article-toc {
    position: static;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 24px;
  }
  .article-toc ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-btn { display: flex; }

  .editorial-grid { grid-template-columns: 1fr; }
  .article-large { grid-row: auto; }
  .article-large .article-img { height: 320px; }

  .journey-map {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .journey-step::after { display: none; }

  .score-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .offer {
    grid-template-columns: 1fr;
  }
  .offer-img {
    height: 200px;
  }
  .offer-side {
    border-left: none;
    border-top: 1px solid var(--border-soft);
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .agency-banner-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .agency-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .agency-offers,
  .reviews-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .content-grid-2,
  .content-grid-3,
  .content-grid-4 {
    grid-template-columns: 1fr;
  }

  .pricing-grid { grid-template-columns: 1fr; }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .hero { padding-bottom: 60px; }

  .search-bar {
    grid-template-columns: 1fr 1fr;
  }
  .search-cta {
    grid-column: 1 / -1;
    padding: 22px;
    justify-content: center;
  }

  .stats-inner { grid-template-columns: 1fr; }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
  .stat:last-child { border-bottom: none; }

  .journey-map { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .editorial, .journey, .testimony, .score, .committee, .newsletter, .threshold,
  .agency-section, .article-related, .article-body-wrap, .comparator {
    padding-left: 24px;
    padding-right: 24px;
  }

  .newsletter-form { flex-direction: column; gap: 12px; border: none; }
  .newsletter-input, .newsletter-btn {
    border: 1px solid rgba(212, 184, 96, 0.4);
    border-radius: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
