@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bleu-nuit: #0d1b2a;
  --bleu-nuit-deep: #080f17;
  --bleu-nuit-mid: #16293d;
  --gris-perle: #e8e4df;
  --gris-perle-light: #f5f3ef;
  --gris-perle-mid: #d4cfc9;
  --or-vieilli: #c9a96e;
  --or-vieilli-light: #dbbf8a;
  --vert-sauge: #7a9e7e;
  --vert-sauge-light: #9bb89f;
  --blanc: #faf9f7;
  --texte-principal: #1a2634;
  --texte-secondaire: #4a5a6a;
  --texte-clair: #8a98a5;
  --separateur: rgba(201, 169, 110, 0.25);
  --ombre-legere: 0 2px 16px rgba(13, 27, 42, 0.08);
  --ombre-moyenne: 0 4px 32px rgba(13, 27, 42, 0.14);
  --ombre-forte: 0 8px 48px rgba(13, 27, 42, 0.22);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--texte-principal);
  background-color: var(--blanc);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--or-vieilli);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--or-vieilli-light);
  opacity: 0.85;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bleu-nuit);
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  line-height: 1.75;
  color: var(--texte-secondaire);
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

ul, ol {
  padding-left: 1.5rem;
  color: var(--texte-secondaire);
  line-height: 1.75;
}

li {
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-mid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-gap {
  padding: 96px 0;
}

.section-gap-sm {
  padding: 64px 0;
}

.section-gap-lg {
  padding: 120px 0;
}

.divider-gold {
  width: 64px;
  height: 3px;
  background: var(--or-vieilli);
  margin: 1.5rem 0;
}

.divider-gold-center {
  width: 64px;
  height: 3px;
  background: var(--or-vieilli);
  margin: 1.5rem auto;
}

.tag-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-vieilli);
  margin-bottom: 1rem;
}

.tag-label-sage {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vert-sauge);
  margin-bottom: 1rem;
}

.text-gold { color: var(--or-vieilli); }
.text-sage { color: var(--vert-sauge); }
.text-pearl { color: var(--gris-perle); }
.text-blanc { color: var(--blanc); }
.text-muted { color: var(--texte-clair); }

.bg-bleu-nuit { background-color: var(--bleu-nuit); }
.bg-bleu-nuit-deep { background-color: var(--bleu-nuit-deep); }
.bg-bleu-nuit-mid { background-color: var(--bleu-nuit-mid); }
.bg-gris-perle { background-color: var(--gris-perle); }
.bg-gris-perle-light { background-color: var(--gris-perle-light); }
.bg-blanc { background-color: var(--blanc); }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ================================
   NAVIGATION
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: background-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blanc);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}

.logo span {
  color: var(--or-vieilli);
}

.logo:hover {
  color: var(--gris-perle);
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gris-perle);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--or-vieilli);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--or-vieilli);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gris-perle);
  transition: all 0.3s ease;
}

/* ================================
   HERO SECTIONS
================================ */
.hero-main {
  min-height: 100vh;
  background-color: var(--bleu-nuit-deep);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  overflow: hidden;
}

.hero-main-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-main.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-main:hover .hero-main-bg {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 23, 0.98) 0%,
    rgba(8, 15, 23, 0.6) 40%,
    rgba(8, 15, 23, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 96px;
  width: 100%;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-vieilli);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--or-vieilli);
}

.hero-content h1 {
  color: var(--blanc);
  max-width: 800px;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 em {
  color: var(--or-vieilli);
  font-style: normal;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--gris-perle);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--texte-clair);
  font-style: italic;
  margin-top: 1.5rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-disclaimer strong {
  color: var(--gris-perle-mid);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--texte-clair);
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or-vieilli), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--bleu-nuit);
  color: var(--or-vieilli);
  border: 1px solid var(--or-vieilli);
}

.btn-primary:hover {
  background-color: var(--or-vieilli);
  color: var(--bleu-nuit-deep);
  opacity: 1;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--gris-perle);
  border: 1px solid rgba(232, 228, 223, 0.4);
}

.btn-outline-light:hover {
  background-color: rgba(232, 228, 223, 0.1);
  color: var(--blanc);
  opacity: 1;
  border-color: var(--gris-perle);
}

.btn-gold {
  background-color: var(--or-vieilli);
  color: var(--bleu-nuit-deep);
  border: 1px solid var(--or-vieilli);
  font-weight: 700;
}

.btn-gold:hover {
  background-color: var(--or-vieilli-light);
  color: var(--bleu-nuit-deep);
  opacity: 1;
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.4);
}

.btn-lg {
  padding: 1.2rem 2.8rem;
  font-size: 0.85rem;
}

/* ================================
   ARTICLE SECTIONS (Listicle)
================================ */
.article-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--separateur);
  border-bottom: 1px solid var(--separateur);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--texte-clair);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
}

.meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--or-vieilli);
  display: inline-block;
}

.article-intro {
  font-size: 1.15rem;
  color: var(--texte-secondaire);
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.article-intro strong {
  color: var(--texte-principal);
  font-weight: 600;
}

/* ================================
   FULL-WIDTH IMAGE DIVIDER
================================ */
.img-divider {
  position: relative;
  overflow: hidden;
  height: 520px;
}

.img-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.75);
  transition: transform 0.6s ease;
}

.img-divider:hover img {
  transform: scale(1.02);
}

.img-divider-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 15, 23, 0.3);
}

.img-divider-caption h2 {
  color: var(--blanc);
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  font-weight: 800;
}

.img-divider-caption h2 em {
  color: var(--or-vieilli);
  font-style: normal;
}

/* ================================
   LISTICLE NUMBERED ITEMS
================================ */
.listicle-section {
  background: var(--blanc);
}

.listicle-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gris-perle-mid);
}

.listicle-item:last-child {
  border-bottom: none;
}

.listicle-item.reversed {
  direction: rtl;
}

.listicle-item.reversed > * {
  direction: ltr;
}

.listicle-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gris-perle-mid);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.listicle-item-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--bleu-nuit);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.listicle-item-text {
  color: var(--texte-secondaire);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.listicle-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gris-perle);
}

.listicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listicle-img:hover img {
  transform: scale(1.04);
}

.listicle-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
  z-index: 1;
}

/* ================================
   HIGHLIGHT BOXES
================================ */
.highlight-box {
  background: var(--gris-perle-light);
  border-left: 4px solid var(--or-vieilli);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
}

.highlight-box-sage {
  background: rgba(122, 158, 126, 0.08);
  border-left: 4px solid var(--vert-sauge);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
}

.highlight-box h3, .highlight-box-sage h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

/* ================================
   CARDS GRID
================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--blanc);
  border: 1px solid var(--gris-perle-mid);
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--or-vieilli);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--ombre-moyenne);
  transform: translateY(-4px);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.card-icon-sage {
  width: 48px;
  height: 48px;
  background: rgba(122, 158, 126, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(122, 158, 126, 0.2);
}

.card-icon svg, .card-icon-sage svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--bleu-nuit);
}

.info-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.info-card-dark {
  background: var(--bleu-nuit-mid);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.info-card-dark h3 {
  color: var(--blanc);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.info-card-dark p {
  color: var(--gris-perle);
  font-size: 0.9rem;
}

.info-card-dark:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

/* ================================
   COMPARISON TABLE
================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 2rem 0;
}

.comparison-table th {
  background: var(--bleu-nuit);
  color: var(--or-vieilli);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gris-perle-mid);
  color: var(--texte-secondaire);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
  background: var(--gris-perle-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-gold {
  color: var(--or-vieilli);
  font-weight: 700;
}

/* ================================
   FAQ SECTION
================================ */
.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gris-perle-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bleu-nuit);
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--or-vieilli);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--or-vieilli);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or-vieilli);
  font-size: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--or-vieilli);
  color: var(--blanc);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 1.75rem 0;
  color: var(--texte-secondaire);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ================================
   IMAGE GRID (Multi-photo)
================================ */
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.img-mosaic-wide {
  grid-column: 1 / -1;
}

.img-mosaic img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img-mosaic-wide img {
  height: 380px;
}

.img-mosaic-item {
  overflow: hidden;
  position: relative;
}

.img-mosaic-item:hover img {
  transform: scale(1.04);
}

/* ================================
   PHOTO GALLERY ROWS (for index.html)
================================ */
.photo-row {
  display: grid;
  gap: 16px;
  margin: 2.5rem 0;
}

.photo-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.photo-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.photo-row-item {
  overflow: hidden;
  position: relative;
}

.photo-row-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-row-item:hover img {
  transform: scale(1.04);
}

/* ================================
   SPLIT LAYOUT (50/50)
================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.split-img {
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.6s ease;
}

.split-img:hover img {
  transform: scale(1.04);
}

.split-content {
  display: flex;
  align-items: center;
  padding: 64px;
}

.split-content-inner {
  max-width: 480px;
}

.split-content-dark {
  background: var(--bleu-nuit);
}

.split-content-dark h2 {
  color: var(--blanc);
}

.split-content-dark h3 {
  color: var(--or-vieilli);
}

.split-content-dark p {
  color: var(--gris-perle);
}

.split-content-light {
  background: var(--gris-perle-light);
}

/* ================================
   QUOTE BLOCK
================================ */
.quote-block {
  background: var(--bleu-nuit);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--or-vieilli);
}

.quote-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--or-vieilli);
}

.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.quote-text strong {
  color: var(--or-vieilli);
  font-style: normal;
  font-weight: 700;
}

.quote-source {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-clair);
  font-family: 'Montserrat', sans-serif;
}

/* ================================
   CHECKLIST
================================ */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gris-perle-mid);
  color: var(--texte-secondaire);
  font-size: 0.92rem;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid var(--or-vieilli);
  position: relative;
  top: 2px;
}

.check-list li.checked::before {
  background: var(--or-vieilli);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4 4L16 6' stroke='%230d1b2a' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ================================
   INFO CONTEXT BOX (Limitation/Disclaimer)
================================ */
.context-box {
  background: rgba(122, 158, 126, 0.07);
  border: 1px solid rgba(122, 158, 126, 0.3);
  padding: 2.5rem;
  margin: 3rem 0;
}

.context-box h3 {
  color: var(--vert-sauge);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.context-box p, .context-box li {
  font-size: 0.88rem;
  color: var(--texte-secondaire);
  line-height: 1.75;
}

.context-box ul {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

/* ================================
   EDUCATIONAL BANNER
================================ */
.edu-banner {
  background: var(--bleu-nuit-deep);
  border-top: 1px solid var(--separateur);
  border-bottom: 1px solid var(--separateur);
  padding: 1.25rem 0;
  text-align: center;
}

.edu-banner p {
  font-size: 0.8rem;
  color: var(--texte-clair);
  letter-spacing: 0.06em;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.edu-banner strong {
  color: var(--or-vieilli);
}

/* ================================
   HORIZONTAL LINE DIVIDERS
================================ */
.line-divider {
  width: 100%;
  height: 1px;
  background: var(--separateur);
  margin: 3rem 0;
}

.line-divider-full {
  width: 100%;
  height: 1px;
  background: var(--separateur);
}

/* ================================
   WIDE IMAGE SECTION (about, etc.)
================================ */
.wide-img-section {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.wide-img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}

.wide-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 23, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wide-img-overlay-content {
  text-align: center;
  color: var(--blanc);
  max-width: 700px;
  padding: 0 2rem;
}

.wide-img-overlay-content h2 {
  color: var(--blanc);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.wide-img-overlay-content p {
  color: var(--gris-perle);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ================================
   TIMELINE (about.html)
================================ */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--separateur);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.65rem;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--bleu-nuit);
  border: 2px solid var(--or-vieilli);
  border-radius: 50%;
}

.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--or-vieilli);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--texte-secondaire);
  line-height: 1.7;
}

/* ================================
   CONTACT FORM
================================ */
.contact-form-wrap {
  background: var(--gris-perle-light);
  padding: 3rem;
  border: 1px solid var(--gris-perle-mid);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  margin-bottom: 0.75rem;
}

.form-control {
  width: 100%;
  background: var(--blanc);
  border: 1px solid var(--gris-perle-mid);
  padding: 1rem 1.25rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--texte-principal);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--or-vieilli);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--texte-clair);
  line-height: 1.65;
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gris-perle-mid);
  margin-top: 1.75rem;
}

/* ================================
   CONTACT INFO BLOCKS
================================ */
.contact-info-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--or-vieilli);
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or-vieilli);
  margin-bottom: 0.35rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--texte-secondaire);
  line-height: 1.65;
  margin: 0;
}

/* ================================
   POLICY PAGES
================================ */
.policy-header {
  background: var(--bleu-nuit);
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--separateur);
}

.policy-header h1 {
  color: var(--blanc);
  margin-bottom: 1rem;
}

.policy-header p {
  color: var(--gris-perle);
  font-size: 0.95rem;
}

.policy-content {
  padding: 80px 0;
}

.policy-section {
  margin-bottom: 3.5rem;
}

.policy-section h2 {
  font-size: 1.3rem;
  color: var(--bleu-nuit);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--separateur);
}

.policy-section h3 {
  font-size: 1rem;
  color: var(--bleu-nuit);
  margin: 1.5rem 0 0.75rem;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--texte-secondaire);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--texte-secondaire);
}

.policy-section li {
  margin-bottom: 0.6rem;
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: var(--bleu-nuit-deep);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-brand h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.footer-brand h2 span {
  color: var(--or-vieilli);
}

.footer-brand-tagline {
  font-size: 0.78rem;
  color: var(--texte-clair);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--texte-clair);
  line-height: 1.8;
}

.footer-edu-note {
  display: inline-block;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  color: var(--or-vieilli);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.footer-nav h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or-vieilli);
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 0.75rem;
}

.footer-nav ul a {
  font-size: 0.88rem;
  color: var(--texte-clair);
  text-decoration: none;
  transition: color 0.25s ease;
  font-family: 'Open Sans', sans-serif;
}

.footer-nav ul a:hover {
  color: var(--gris-perle);
  opacity: 1;
}

.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or-vieilli);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--or-vieilli);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  font-size: 0.85rem;
  color: var(--texte-clair);
  line-height: 1.6;
  margin: 0;
}

.footer-hours {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--texte-clair);
  line-height: 1.7;
}

.footer-hours strong {
  color: var(--gris-perle);
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--texte-clair);
  line-height: 1.8;
  max-width: 1100px;
}

.footer-disclaimer p + p {
  margin-top: 1rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--texte-clair);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--texte-clair);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--or-vieilli);
  opacity: 1;
}

/* ================================
   COOKIE BANNER
================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bleu-nuit-deep);
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  padding: 1.5rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--gris-perle);
  line-height: 1.65;
  flex: 1;
  min-width: 280px;
}

.cookie-text strong {
  color: var(--blanc);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.35rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cookie-accept {
  background: var(--or-vieilli);
  color: var(--bleu-nuit-deep);
  border-color: var(--or-vieilli);
}

.btn-cookie-accept:hover {
  background: var(--or-vieilli-light);
  border-color: var(--or-vieilli-light);
  color: var(--bleu-nuit-deep);
  opacity: 1;
}

.btn-cookie-refuse {
  background: transparent;
  color: var(--gris-perle);
  border-color: rgba(232, 228, 223, 0.3);
}

.btn-cookie-refuse:hover {
  background: rgba(232, 228, 223, 0.08);
  color: var(--blanc);
  border-color: rgba(232, 228, 223, 0.6);
  opacity: 1;
}

.btn-cookie-more {
  background: transparent;
  color: var(--or-vieilli);
  border-color: rgba(201, 169, 110, 0.3);
}

.btn-cookie-more:hover {
  background: rgba(201, 169, 110, 0.08);
  color: var(--or-vieilli-light);
  border-color: rgba(201, 169, 110, 0.6);
  opacity: 1;
}

/* ================================
   DECORATIVE ELEMENTS
================================ */
.deco-line-h {
  width: 100%;
  height: 1px;
  background: var(--separateur);
}

.deco-cross {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}

.deco-cross::before, .deco-cross::after {
  content: '';
  position: absolute;
  background: var(--or-vieilli);
}

.deco-cross::before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
}

.deco-cross::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

.corner-decoration {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(201, 169, 110, 0.3);
  border-style: solid;
}

.corner-tl {
  top: 20px;
  left: 20px;
  border-width: 1px 0 0 1px;
}

.corner-br {
  bottom: 20px;
  right: 20px;
  border-width: 0 1px 1px 0;
}

/* ================================
   STATS ROW
================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(201, 169, 110, 0.12);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--or-vieilli);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gris-perle);
  letter-spacing: 0.06em;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ================================
   THANK YOU PAGE
================================ */
.thankyou-section {
  min-height: calc(100vh - 72px);
  background: var(--bleu-nuit-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 2rem 4rem;
}

.thankyou-content {
  max-width: 560px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  color: var(--or-vieilli);
}

.thankyou-content h1 {
  color: var(--blanc);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.thankyou-content p {
  color: var(--gris-perle);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ================================
   MAIN CONTENT PADDING (for fixed header)
================================ */
.page-content {
  padding-top: 72px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(201, 169, 110, 0.12);
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 15, 23, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--separateur);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .listicle-item {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .listicle-item.reversed {
    direction: ltr;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-img img {
    height: 380px;
  }

  .split-content {
    padding: 3rem 2rem;
  }

  .quote-block {
    padding: 60px 2rem;
  }

  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .section-gap {
    padding: 72px 0;
  }

  .section-gap-lg {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .container, .container-narrow, .container-mid {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 60px 0 80px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .article-meta {
    gap: 1rem;
  }

  .photo-row-3 {
    grid-template-columns: 1fr;
  }

  .photo-row-2 {
    grid-template-columns: 1fr;
  }

  .img-mosaic {
    grid-template-columns: 1fr;
  }

  .img-mosaic-wide {
    grid-column: 1;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .stat-item:nth-child(3) {
    border-right: none;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .comparison-table {
    font-size: 0.82rem;
  }

  .comparison-table th, .comparison-table td {
    padding: 0.9rem 1rem;
  }

  .img-divider {
    height: 320px;
  }

  .wide-img-section {
    height: 380px;
  }

  .split-content {
    padding: 2.5rem 1.5rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-gap { padding: 56px 0; }
  .section-gap-sm { padding: 48px 0; }
  .section-gap-lg { padding: 64px 0; }

  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  .listicle-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie {
    text-align: center;
    width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .split-img img {
    height: 260px;
  }
}
