@charset "UTF-8";

/*
Theme Name: Voyager Monde
Theme URI: https://voyager-monde.net
Author: Webinstrass
Description: Theme WordPress VDL pour Voyager Monde, converti depuis export Otomatic.
Version: 1.0.0
Text Domain: voyager-monde
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
*/

/* =============================================
   VOYAGER MONDE — styles.css
   Magazine de voyage éditorial premium
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --bg:        #F5F0E8;
  --bg-card:   #FBF8F3;
  --text:      #1E1C18;
  --text-muted:#6B6660;
  --accent:    #C85D2A;
  --accent-dark:#A84A20;
  --blue:      #1B4F72;
  --blue-light:#2471A3;
  --border:    #E8E2D8;
  --white:     #FFFFFF;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Work Sans', system-ui, sans-serif;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 3px rgba(30,28,24,0.08);
  --shadow-md: 0 4px 16px rgba(30,28,24,0.10);
  --shadow-lg: 0 8px 32px rgba(30,28,24,0.14);

  --max-w: 1240px;
  --sidebar-w: 300px;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-pad {
  padding: var(--space-4xl) 0;
}

.section-pad-sm {
  padding: var(--space-2xl) 0;
}

.text-accent  { color: var(--accent); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--text-muted); font-size: 0.875rem; }

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: var(--space-md) 0 var(--space-lg);
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s;
  border-radius: var(--radius-sm);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding-left: 0;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.btn-ghost:hover { color: var(--accent); }

.btn-ghost::after {
  content: '→';
  margin-left: 0.25rem;
  transition: transform 0.18s;
}

.btn-ghost:hover::after { transform: translateX(4px); }

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-name span { color: var(--accent); }

.logo-slogan {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem !important;
}

.nav-cta:hover { background: var(--accent-dark); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  border-top: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,8,0.78) 0%, rgba(20,16,8,0.18) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-4xl) var(--space-lg);
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-title em {
  font-style: italic;
  color: #F0C98A;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ─── LAYOUT: CONTENT + SIDEBAR ─── */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: var(--space-3xl);
  align-items: start;
}

.article-layout {
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: center;
  gap: var(--space-3xl);
}

.article-hero-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.article-hero-meta span + span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: var(--space-md);
  vertical-align: 0.15em;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ─── SECTION HEADER ─── */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  color: var(--blue);
}

/* ─── À LA UNE ─── */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.featured-article:hover {
  box-shadow: var(--shadow-lg);
}

.featured-article:hover .featured-img {
  transform: scale(1.03);
}

.featured-img-wrap {
  overflow: hidden;
  height: 440px;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.featured-body {
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.featured-continent {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.featured-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.featured-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.featured-excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.featured-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.featured-author strong {
  color: var(--text);
}

/* ─── GRILLE ARTICLES ASYMÉTRIQUE ─── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

/* Article large (1er) */
.articles-grid .article-card:nth-child(1) {
  grid-column: 1 / 3;
}

/* Article tall (4e) */
.articles-grid .article-card:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

/* ─── ARTICLE CARD ─── */
.article-card {
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.article-card:hover .article-img {
  transform: scale(1.04);
}

.article-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
  flex-shrink: 0;
}

.article-card:nth-child(4) .article-img-wrap {
  aspect-ratio: 3/4;
  height: 100%;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.article-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.article-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.article-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-sm);
  transition: color 0.2s;
}

.article-card:hover .article-title { color: var(--accent); }

.article-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-md);
}

.article-read {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s, gap 0.18s;
}

.article-card:hover .article-read {
  color: var(--accent);
  gap: 0.45rem;
}

.article-read::after { content: '→'; }

/* ─── SIDEBAR ─── */
.sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sidebar-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-lg);
}

.sidebar-block-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

/* Derniers articles */
.sidebar-articles li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-articles li:last-child { border-bottom: none; }

.sidebar-article-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  line-height: 1.4;
  display: block;
}

.sidebar-article-link:hover { color: var(--accent); }

.sidebar-article-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── ARTICLE LONG FORMAT ─── */
.single-article .section-pad {
  padding-top: var(--space-3xl);
}

.vdl-article-content {
  max-width: 760px;
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.84;
}

.vdl-article-content > * + * {
  margin-top: var(--space-lg);
}

.vdl-article-content p {
  margin-bottom: 0;
}

.vdl-article-content h2 {
  position: relative;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
  color: var(--blue);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.16;
}

.vdl-article-content h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--accent);
}

.vdl-article-content h3 {
  margin-top: var(--space-xl);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.38;
}

.vdl-article-content a {
  color: var(--blue);
  border-bottom: 1px solid rgba(27,79,114,0.28);
  transition: color 0.2s, border-color 0.2s;
}

.vdl-article-content a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.vdl-article-content ul,
.vdl-article-content ol {
  margin: var(--space-lg) 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  list-style: none;
}

.vdl-article-content li {
  position: relative;
  padding-left: 1.25rem;
}

.vdl-article-content li + li {
  margin-top: var(--space-sm);
}

.vdl-article-content li::before {
  content: '';
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.vdl-article-content blockquote,
.vdl-article-content .infos-pratiques {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.vdl-article-content table {
  width: 100%;
  margin: var(--space-2xl) 0;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.94rem;
  line-height: 1.55;
}

.vdl-article-content th,
.vdl-article-content td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.vdl-article-content th {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.vdl-article-content tr:last-child td {
  border-bottom: none;
}

.vdl-article-content tr:nth-child(even) td {
  background: rgba(255,255,255,0.42);
}

.vdl-article-content h2 + table,
.vdl-article-content h2 + ul {
  margin-top: var(--space-md);
}

/* Explorer continents */
.continent-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.continent-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  border-radius: var(--radius-sm);
}

.continent-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 93, 42, 0.04);
}

.continent-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Newsletter sidebar */
.sidebar-newsletter p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sidebar-newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color 0.2s;
}

.sidebar-newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}

.sidebar-newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.sidebar-newsletter-form button {
  width: 100%;
  padding: 0.65rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.sidebar-newsletter-form button:hover {
  background: var(--accent-dark);
}

/* ─── SECTION CONTINENTS ─── */
.continents-section {
  background: var(--white);
}

.continents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
}

.continent-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

/* Grande carte : Afrique (1ère) — 2 colonnes */
.continents-grid .continent-card:nth-child(1) {
  grid-column: 1 / 3;
}

/* Grande carte : Océanie (5e) — 2 colonnes */
.continents-grid .continent-card:nth-child(5) {
  grid-column: 2 / 4;
}

.continent-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.continent-card:hover .continent-card-img {
  transform: scale(1.06);
}

.continent-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,8,0.72) 0%, rgba(20,16,8,0.05) 60%);
  transition: background 0.35s;
}

.continent-card:hover .continent-card-overlay {
  background: linear-gradient(to top, rgba(20,16,8,0.82) 0%, rgba(20,16,8,0.18) 60%);
}

.continent-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-xl);
  color: var(--white);
  z-index: 2;
}

.continent-card-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.continent-card-count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.continent-card-arrow {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
}

.continent-card:hover .continent-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FOOTER NEWSLETTER ─── */
.footer-newsletter {
  background: var(--blue);
  padding: var(--space-3xl) 0;
}

.footer-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.footer-newsletter h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-newsletter p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.newsletter-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.7);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--accent-dark); }

/* ─── FOOTER ─── */
.site-footer {
  background: #0F2D3F;
  color: rgba(255,255,255,0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer-logo-name span { color: #F0C98A; }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}

.footer-about-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-nav-links a:hover { color: #F0C98A; }

.footer-nav-links a::before {
  content: '–';
  color: var(--accent);
  font-size: 0.7rem;
}

.footer-newsletter-mini {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-newsletter-mini p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-sm);
}

.footer-newsletter-mini input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  transition: border-color 0.2s;
}

.footer-newsletter-mini input[type="email"]:focus {
  border-color: rgba(255,255,255,0.4);
}

.footer-newsletter-mini input[type="email"]::placeholder {
  color: rgba(255,255,255,0.3);
}

.footer-newsletter-mini button {
  width: 100%;
  padding: 0.65rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.footer-newsletter-mini button:hover { background: var(--accent-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── PAGE HERO (sous-pages) ─── */
.page-hero {
  background: var(--blue);
  padding: var(--space-4xl) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 580px;
  margin: var(--space-lg) auto 0;
  position: relative;
}

/* ─── DESTINATIONS PAGE ─── */
.destinations-intro {
  max-width: 760px;
}

.destinations-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.destination-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  display: block;
  background: var(--bg-card);
}

.destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-card-img {
  transform: scale(1.07);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,5,0.78) 0%, transparent 55%);
  transition: background 0.3s;
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(to top, rgba(15,12,5,0.88) 0%, rgba(15,12,5,0.1) 55%);
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg);
  color: var(--white);
}

.destination-card-name {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

.destination-card-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

.destination-card-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1.5px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s;
}

.destination-card:hover .destination-card-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ─── À PROPOS ─── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-intro-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-intro-text h2 {
  color: var(--blue);
  margin-bottom: var(--space-md);
}

.about-intro-text p {
  font-size: 1.025rem;
  line-height: 1.82;
  color: var(--text-muted);
}

.about-values {
  background: var(--blue);
  padding: var(--space-4xl) 0;
}

.about-values-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.about-values-header h2 { color: var(--white); }

.about-values-header p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: var(--space-md) auto 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-xl);
  transition: background 0.25s;
}

.value-card:hover { background: rgba(255,255,255,0.1); }

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-lg);
  color: #F0C98A;
}

.value-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.about-manifesto {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--blue);
  max-width: 820px;
  margin: 0 auto var(--space-xl);
  line-height: 1.4;
}

.manifesto-quote::before { content: '\201C'; }
.manifesto-quote::after  { content: '\201D'; }

.about-team-section {
  padding: 0 0 var(--space-4xl);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
}

.team-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--border);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info h2 {
  color: var(--blue);
  margin-bottom: var(--space-md);
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,93,42,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-value {
  color: var(--text);
  font-weight: 500;
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
}

.contact-form-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.18s;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Form success */
.form-success {
  display: none;
  background: rgba(27,79,114,0.06);
  border: 1.5px solid var(--blue);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-md);
  border-radius: var(--radius-sm);
}

.form-success.show { display: block; }

.form-success p {
  color: var(--blue);
  font-weight: 500;
  margin: 0;
}

/* ─── REVEAL ON SCROLL ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── 404 ─── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
}

.error-code {
  font-family: var(--font-title);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.error-page h1 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: var(--space-md);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  :root { --sidebar-w: 260px; }
}

@media (max-width: 960px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: stretch;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .continents-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .continents-grid .continent-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .continents-grid .continent-card:nth-child(5) {
    grid-column: 1 / 3;
  }

  .articles-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .articles-grid .article-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .articles-grid .article-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .article-card:nth-child(4) .article-img-wrap {
    aspect-ratio: 16/10;
    height: auto;
  }

  .footer-newsletter-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro-img { height: 380px; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-img-wrap { height: 320px; }

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

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

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }

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

  .articles-grid .article-card:nth-child(1) {
    grid-column: 1;
  }

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

  .vdl-article-content {
    font-size: 1rem;
    line-height: 1.78;
  }

  .vdl-article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .form-row { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  .hero { height: 80vh; }

  .continents-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .continents-grid .continent-card {
    height: 220px;
    grid-column: 1 !important;
  }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 480px) {
  :root {
    --space-4xl: 3.5rem;
    --space-3xl: 2.5rem;
  }

  .hero-actions { flex-direction: column; align-items: center; }

  .hero-scroll { display: none; }

  .featured-img-wrap { height: 240px; }
}
