/* ===================================================================
   EASY CAMBODIA — Feuille de styles principale
   Charte éditoriale & immersive — Fraunces + Inter
   =================================================================== */

/* ========= RESET ========= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #faf7f2;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========= VARIABLES ========= */
:root {
  --ink: #1b2850;
  --ink-soft: #3d4f72;
  --ink-muted: #8a93a8;
  /* Aliases for data-style / migrated markup (invalid var drops the whole declaration) */
  --text: var(--ink);
  --text-muted: var(--ink-soft);
  --cream: #faf7f2;
  --cream-deep: #f2ece1;
  --gold: #b8864b;
  --gold-deep: #8a5f2d;
  --terracotta: #a84c2d;
  --jade: #2d5a4e;
  --line: #e5ddd0;
  --navy: #1b2850;
  --max: 1280px;
  --max-article: 740px;
  --gutter: clamp(20px, 4vw, 48px);
  --font-display: 'Fraunces', Georgia, serif;
}

/* ========= TYPOGRAPHIE ========= */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-block;
}

/* ========= LAYOUT ========= */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--max-article); margin: 0 auto; padding: 0 var(--gutter); }
/* Sous-titres dans le lede des fiches adresses (structuration du texte scrapé) */
.addresses-lede .addresses-lede-sub {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 1.2em 0 0.4em;
  color: var(--ink);
}
.addresses-lede p + .addresses-lede-sub { margin-top: 1.45em; }

section { padding: clamp(70px, 10vw, 140px) 0; }

/* ========= HEADER ========= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header-inner {
  position: relative;
  z-index: 2;
  align-items: center;
}
@media (min-width: 641px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
  }
  .header-inner .logo { justify-self: start; }
  .header-inner .site-nav { justify-self: center; }
  .header-inner .header-right { justify-self: end; }
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.site-header.scrolled .logo,
.site-header.solid .logo { color: var(--ink); }
.logo span { color: var(--gold); }

/* Logo image */
.logo.logo-img {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-decoration: none;
}
.logo.logo-img img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.site-header.scrolled .logo.logo-img img,
.site-header.solid .logo.logo-img img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(800%) hue-rotate(195deg) brightness(80%) contrast(95%);
}
.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  transition: color 0.3s;
  line-height: 1;
}
.logo-text strong {
  font-weight: 800;
  letter-spacing: 0.15em;
}
.site-header.scrolled .logo-text,
.site-header.solid .logo-text {
  color: #1b2850;
}
nav ul {
  display: flex; gap: 2.2rem; list-style: none; padding: 0; margin: 0;
}
nav a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s;
}
.site-header.scrolled nav a,
.site-header.solid nav a { color: var(--ink); }
nav a:hover { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 1.5rem; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  transition: all 0.2s;
}
.site-header.scrolled .lang-btn,
.site-header.solid .lang-btn {
  color: var(--ink);
  border-color: var(--line);
}
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 8px;
  min-width: 160px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s;
}
.lang-switch.open .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 0.9rem;
  border-radius: 8px;
}
.lang-menu a:hover { background: var(--cream-deep); }
.lang-menu a.active { color: var(--gold-deep); font-weight: 500; }

.header-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: #fff;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.site-header.scrolled .header-search-btn,
.site-header.solid .header-search-btn {
  color: var(--ink);
  border-color: var(--line);
}
.header-search-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.header-search-btn svg {
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.burger { display: none; }

/* ========= HERO HOMEPAGE ========= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 10vh;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://easycambodia.sgp1.cdn.digitaloceanspaces.com/img/angkor-feel-jDYFFjBakBw-unsplash.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: slowZoom 20s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1);    }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.75) 100%);
  z-index: -1;
}
.hero-content { max-width: 800px; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #f5d8a8;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.hero-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.hero-cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.hero-cta.ghost:hover { background: var(--ink); color: #fff; }
.hero-cta .arrow { transition: transform 0.25s; }
.hero-cta:hover .arrow { transform: translateX(4px); }
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.4s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ========= HOMEPAGE — INTRO / PILIERS / ACTIVITÉS / BESTSELLERS / TRIPS ========= */
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-text p { font-size: 1.08rem; color: var(--ink-soft); }
.intro-text p.lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2.5rem; }
.stat { padding: 20px 0; border-top: 1px solid var(--line); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--ink-muted); letter-spacing: 0.04em; }
.intro-image {
  aspect-ratio: 4/5;
  background-image: url('https://easycambodia.sgp1.cdn.digitaloceanspaces.com/img/vince-gx-opCFMhUe_FA-unsplash.webp');
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.pillars { background: #fff; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-head p { font-size: 1.05rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.pillar {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all 0.3s;
  background: #fff;
}
.pillar:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.pillar-icon { width: 42px; height: 42px; margin-bottom: 20px; color: var(--gold); }
.pillar h3 { font-size: 1.2rem; margin-bottom: 0.5em; }
.pillar p { font-size: 0.95rem; margin: 0; }

.activities { background: var(--cream); }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 3rem; }
.cat-tab {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #fff;
  transition: all 0.2s;
}
.cat-tab.active, .cat-tab:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.act-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.act-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.act-img { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.act-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.act-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.act-loc {
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.act-body h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
.act-body p { font-size: 0.94rem; margin-bottom: 1.5em; flex: 1; }
.act-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.act-price { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink); }
.act-price small { color: var(--ink-muted); font-size: 0.75rem; margin-right: 4px; }
.act-link {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.act-link:hover { color: var(--gold-deep); }
.act-link svg { transition: transform 0.2s; }
.act-link:hover svg { transform: translateX(3px); }

.bestsellers { background: #fff; padding-top: 0; }
.home-cholsa-spotlight {
  padding: clamp(28px, 4vw, 44px) 0 clamp(8px, 2vw, 16px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.bs-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.bs-header .bs-intro { max-width: 560px; }
.bs-header h2 { margin-bottom: 0.5em; }
.bs-header p { margin: 0; }
.bs-legend { font-size: 0.82rem; color: var(--ink-muted); display: flex; align-items: center; gap: 8px; }
.bs-legend .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.bs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
  position: relative;
}
.bs-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); border-color: var(--gold); }
.bs-img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.bs-ribbons {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-start;
}
.bs-ribbon {
  background: var(--navy);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
}
.bs-ribbon.gold { background: var(--gold); color: #fff; }
.bs-ribbon svg { width: 11px; height: 11px; }
.bs-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.bs-loc {
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bs-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.25; }
.bs-rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; }
.bs-rating .stars { color: var(--gold); letter-spacing: 1px; }
.bs-rating .count { color: var(--ink-muted); }
.bs-meta {
  display: flex; gap: 14px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.bs-meta span { display: inline-flex; align-items: center; gap: 5px; }
.bs-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.bs-price { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.bs-price small { color: var(--ink-muted); font-size: 0.72rem; margin-right: 4px; font-family: 'Inter', sans-serif; font-weight: 400; }
.bs-cta {
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.bs-cta:hover { background: var(--gold-deep); }

.trips { background: var(--ink); color: #fff; }
.trips h2 { color: #fff; }
.trips .section-head p { color: rgba(255,255,255,0.7); }
.trips .eyebrow { color: var(--gold); }
.trips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.trip-card:hover { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.trip-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.trip-body { padding: 30px; }
.trip-duration {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.trip-body h3 { color: #fff; font-size: 1.4rem; }
.trip-body p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.trip-stops { display: flex; flex-wrap: wrap; gap: 6px; margin: 1.2rem 0 1.5rem; }
.trip-stop {
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
}
.trip-link { color: var(--gold); font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.trip-link:hover { color: #f5d8a8; }

.regions { background: #fff; }
.regions-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.regions-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.regions-list li {
  padding: 0;
  border-top: 1px solid var(--line);
}
.regions-list li:last-child { border-bottom: 1px solid var(--line); }
.regions-list-link {
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.2s;
  text-decoration: none;
  color: inherit;
}
.regions-list-link:hover { padding-left: 8px; }
.regions-list-link:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}
.region-num { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--gold-deep); }
.region-name { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--ink); font-weight: 500; }
.region-tag { font-size: 0.78rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.regions-map {
  aspect-ratio: 1;
  background-image: url('https://easycambodia.sgp1.cdn.digitaloceanspaces.com/img/allphoto-bangkok-snsPfG7tIcA-unsplash.webp');
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.tips { background: var(--cream-deep); }
.tips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tip { background: var(--cream); padding: 32px 28px; border-radius: 8px; }
.tip h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.tip p { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--ink); line-height: 1.4; margin: 0; }
.tip small {
  display: block;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.faq { background: #fff; }
.article-body .faq {
  margin-top: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-q .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform 0.3s; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--ink); top: 50%; left: 50%; }
.faq-q .plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.3s; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 28px; font-size: 1rem; color: var(--ink-soft); margin: 0; }

.newsletter { background: var(--ink); color: #fff; text-align: center; }
.newsletter h2 { color: #fff; max-width: 620px; margin: 0 auto 1rem; }
.newsletter p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2.5rem; }
.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px;
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.5); }
.nl-form button {
  padding: 12px 26px;
  background: var(--gold);
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nl-form button:hover { background: var(--gold-deep); }
.nl-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 1.5rem; }

/* ========= FOOTER ========= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2em;
}
.foot-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.foot-logo span { color: var(--gold); }
.foot-tagline { color: rgba(255,255,255,0.6); line-height: 1.55; max-width: 280px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer li a:hover { color: var(--gold); }
.foot-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.disclosure {
  max-width: 560px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-revive {
  margin: 1.5rem auto;
  text-align: center;
}
.foot-revive ins { display: inline-block; vertical-align: top; }

/* ========= REVEAL ANIMATIONS ========= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====================================================================
   ARTICLE — Mise en page éditoriale (itinéraires, destinations, guides)
   ==================================================================== */

/* Hero article (plus compact que la homepage) */
.article-hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 62vh;
  padding: 160px 0 80px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-hero .wrap-narrow {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--article-hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.article-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.78) 100%);
  z-index: -1;
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.article-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  max-width: 920px;
  margin-bottom: 1.1rem;
}
.article-hero .lede {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin-bottom: 1.8rem;
}
.article-hero .hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.35;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta svg { width: 15px; height: 15px; opacity: 0.85; }
.article-meta .reading-time { font-weight: 500; letter-spacing: 0.02em; }

/* Byline auteur (EEAT) */
.byline {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.byline-inner {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.byline-author { display: flex; align-items: center; gap: 14px; }
.byline-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream-deep);
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
}
.byline-text { font-size: 0.9rem; line-height: 1.4; }
.byline-text strong { color: var(--ink); font-weight: 500; }
.byline-text span { color: var(--ink-muted); font-size: 0.85rem; display: block; }
.byline-dates { font-size: 0.82rem; color: var(--ink-muted); }
.byline-dates strong { color: var(--ink-soft); font-weight: 500; }

/* Corps de l'article */
.article-body {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
}
.article-body .wrap-narrow > * { margin-left: auto; margin-right: auto; }
.article-body p,
.article-body ul,
.article-body ol {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2a2a2a;
}
.article-body p { margin: 0 0 1.3em; }
.article-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 2.2em 0 0.6em;
  scroll-margin-top: 100px;
}
.article-body h3 {
  font-size: 1.3rem;
  margin: 1.6em 0 0.5em;
}
.article-body ul, .article-body ol { padding-left: 1.3em; margin: 0 0 1.5em; }
.article-body li { margin-bottom: 0.5em; }
.article-body a { color: var(--gold-deep); text-decoration: underline; text-decoration-color: rgba(138, 95, 45, 0.35); text-underline-offset: 3px; transition: all 0.2s; }
.article-body a:hover { text-decoration-color: var(--gold-deep); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { font-style: italic; color: var(--ink-soft); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.2em 0 0.2em 1.4em;
  margin: 2em 0;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

/* Lede / chapô */
.lede-paragraph {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-weight: 400;
  margin-bottom: 2em !important;
}

/* Table des matières */
.toc {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 2em 0 3em;
}
.toc-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.toc ol { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.toc li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem !important;
}
.toc li:first-child { border-top: none; }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--gold-deep); }

/* Jour par jour (itinéraire) */
.day {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  position: relative;
}
.day:first-of-type { border-top: 2px solid var(--ink); }
.day-head {
  display: flex; gap: 20px; align-items: baseline;
  margin-bottom: 1.2em;
}
.day-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.day-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.day-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

/* Encart « Notre recommandation » = carte d'affiliation inline */
.reco {
  background: linear-gradient(135deg, #faf7f2, #f2ece1);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 2em 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.reco-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}
.reco-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  margin-bottom: 6px !important;
  line-height: 1.3;
}
.reco-desc { font-size: 0.95rem !important; color: var(--ink-soft) !important; margin: 0 !important; }
.reco-cta {
  padding: 12px 22px;
  background: var(--ink);
  color: #fff !important;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.reco-cta:hover { background: var(--gold-deep); }
.reco.gold { border-left-color: var(--gold); background: linear-gradient(135deg, #fff8ed, #f5e7c4); }
.reco.gold .reco-cta { background: var(--gold); }
.reco.gold .reco-cta:hover { background: var(--gold-deep); }

/* Tip box / warning box */
.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 2em 0;
}
.callout-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.callout p:last-child { margin-bottom: 0; }
.callout.warning { border-color: #e4bfaa; background: #fdf5ef; }
.callout.warning .callout-label { color: var(--terracotta); }

/* Images dans l'article */
.article-img {
  margin: 2em 0;
  border-radius: 6px;
  overflow: hidden;
}
.article-img img { width: 100%; height: auto; display: block; }
.article-img figcaption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

/* Summary / résumé en tête */
.article-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 0 0 2.5em;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
}
.article-summary strong { display: block; font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; font-weight: 500; }

/* Articles liés */
.related {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  color: inherit;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.related-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.related-body { padding: 22px 24px 24px; }
.related-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}
.related-body h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink); margin: 0; line-height: 1.3; }

/* ========= RESPONSIVE ========= */
@media (max-width: 960px) {
  .intro-grid, .regions-layout { grid-template-columns: 1fr; }
  .intro-image { aspect-ratio: 16/11; order: -1; }
  .pillars-grid, .act-grid, .trips-grid, .tips-grid, .bs-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reco { grid-template-columns: 1fr; }
  .reco-cta { justify-self: start; }
}
@media (max-width: 640px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .header-right { gap: 0.65rem; }
  .burger {
    display: block;
    width: 36px; height: 36px;
    position: relative;
    z-index: 3;
  }
  .burger::before, .burger::after, .burger span {
    content: ''; display: block;
    position: absolute; left: 8px; right: 8px; height: 1.5px;
    background: #fff;
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease, background 0.3s;
  }
  .site-header.scrolled .burger::before,
  .site-header.scrolled .burger::after,
  .site-header.scrolled .burger span,
  .site-header.solid .burger::before,
  .site-header.solid .burger::after,
  .site-header.solid .burger span { background: var(--ink); }
  .site-header.nav-open .burger::before,
  .site-header.nav-open .burger::after,
  .site-header.nav-open .burger span { background: var(--ink); }
  .burger::before { top: 12px; }
  .burger span { top: 17px; }
  .burger::after { top: 22px; }
  .site-header.nav-open .burger span { opacity: 0; }
  .site-header.nav-open .burger::before {
    top: 17px;
    transform: rotate(45deg);
  }
  .site-header.nav-open .burger::after {
    top: 17px;
    transform: rotate(-45deg);
  }

  /* Panneau plein écran (fixed viewport, hors du flex header-inner) */
  .site-header.nav-open {
    z-index: 200;
  }
  .site-header.nav-open .header-inner {
    z-index: 160;
  }
  .site-header.nav-open .burger {
    visibility: hidden;
    pointer-events: none;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    height: 100dvh;
    padding: calc(72px + env(safe-area-inset-top, 0px)) var(--gutter) 2rem;
    background: var(--cream, #faf7f2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 22rem;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .site-nav li {
    width: 100%;
  }
  .site-nav a {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--ink) !important;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.35rem, 5vw, 1.65rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .site-nav a:hover {
    color: var(--gold-deep) !important;
  }
  .site-nav a[aria-current="page"] {
    color: var(--gold-deep) !important;
  }
  .mobile-nav-close {
    display: none;
  }
  .site-header.nav-open .mobile-nav-close {
    display: inline-flex;
    position: absolute;
    top: calc(14px + env(safe-area-inset-top, 0px));
    right: var(--gutter);
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(27, 40, 80, 0.08);
  }
  .mobile-nav-close svg {
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
  }
  .mobile-nav-close:hover {
    color: var(--gold-deep);
    border-color: var(--gold);
  }

  /* Barre du haut lisible sur fond crème */
  .site-header.nav-open .logo.logo-img img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(800%) hue-rotate(195deg) brightness(80%) contrast(95%);
  }
  .site-header.nav-open .logo-text {
    color: #1b2850;
  }
  .site-header.nav-open .header-search-btn {
    color: var(--ink);
    border-color: var(--line);
  }
  .site-header.nav-open .lang-btn {
    color: var(--ink);
    border-color: var(--line);
  }
  .pillars-grid, .act-grid, .trips-grid, .tips-grid, .bs-grid, .related-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nl-form { flex-direction: column; border-radius: 20px; padding: 12px; gap: 10px; background: transparent; border: none; }
  .nl-form input { background: rgba(255,255,255,0.08); border-radius: 12px; }
  .nl-form button { border-radius: 12px; }
  .foot-grid { grid-template-columns: 1fr; }
  .day-head { flex-direction: column; gap: 4px; }
  .toc { padding: 22px 22px; }
}

body.mobile-nav-open {
  overflow: hidden;
}
body.mobile-nav-open main {
  position: relative;
  z-index: 0;
}

/* Force full-bleed media cards in lieux pages */
.poi-card-media {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  overflow: hidden;
}
.poi-card-media .poi-card-img {
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
}
.poi-card-media .poi-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

/* Annuaire : masquage progressif uniquement visuel — toutes les cartes restent dans le HTML pour le crawl */
.poi-grid--progressive .poi-card--deferred {
  display: none !important;
}
.poi-grid--progressive .poi-grid-sentinel {
  grid-column: 1 / -1;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  visibility: hidden;
}
.header-right pagefind-modal-trigger {
  flex-shrink: 0;
}
.header-right .header-search-btn {
  order: -1;
}

/* ========================================================================
   ABOUT PAGE
   ======================================================================== */
.about-hero {
  background: linear-gradient(135deg, #2a3d2b 0%, #3d5240 50%, #8a6a3a 100%);
  color: #fff;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('https://easycambodia.sgp1.cdn.digitaloceanspaces.com/img/sebastian-latorre-lrG4nki2kYM-unsplash.webp');
  background-size: cover; background-position: center;
  opacity: 0.22;
  mix-blend-mode: overlay;
}
.about-hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
}
.about-hero h1 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.about-hero .lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
}

.founders-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  background: #fdfaf5;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px;
  margin: 40px 0;
}
.founders-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.founders-card .portrait {
  aspect-ratio: 4/5;
  border-radius: 10px;
  background-size: cover;
  background-position: center top;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.founders-card h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.founders-card .role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.founders-card p { margin: 0 0 14px; line-height: 1.7; color: var(--ink-soft); }
@media (max-width: 768px) {
  .founders-card { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
}

.timeline {
  position: relative;
  margin: 50px 0;
  padding-left: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 110px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding: 0 0 34px 150px;
  min-height: 50px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date {
  position: absolute;
  left: 0; top: 0;
  width: 90px;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.35rem;
  color: var(--gold-deep);
  font-weight: 500;
  text-align: right;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 104px; top: 10px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold-deep);
  z-index: 1;
}
.timeline-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 8px;
  font-weight: 500;
}
.timeline-body { color: var(--ink-soft); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .timeline::before { left: 9px; }
  .timeline-item { padding-left: 40px; }
  .timeline-date {
    position: relative;
    width: auto; text-align: left;
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: block;
  }
  .timeline-item::before { left: 3px; top: 38px; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin: 36px 0;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
}
.team-card .avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96a, #8a6a3a);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.8rem;
  font-family: var(--font-display, 'Playfair Display', serif);
}
.team-card h4 { margin: 0 0 4px; font-size: 1.1rem; color: var(--ink); }
.team-card .team-role { font-size: 0.82rem; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.team-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 36px 0;
}
.value-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  border-top: 3px solid var(--gold-deep);
}
.value-card h4 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.value-card p { margin: 0; color: var(--ink-soft); line-height: 1.7; }

/* ========================================================================
   TRANSPARENCE PAGE
   ======================================================================== */
.charter-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  counter-reset: charter;
}
.charter-list li {
  position: relative;
  padding: 22px 24px 22px 80px;
  border-top: 1px solid var(--line);
  counter-increment: charter;
}
.charter-list li:last-child { border-bottom: 1px solid var(--line); }
.charter-list li::before {
  content: counter(charter, decimal-leading-zero);
  position: absolute;
  left: 24px; top: 22px;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.6rem;
  color: var(--gold-deep);
  font-weight: 500;
}
.charter-list h4 {
  margin: 0 0 6px;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}
.charter-list p { margin: 0; color: var(--ink-soft); line-height: 1.7; }

.partner-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
}
.partner-card h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-family: var(--font-display, 'Playfair Display', serif);
  color: var(--ink);
  font-weight: 500;
}
.partner-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-badge.active {
  background: #e9f3ea;
  color: #2a5c34;
  border: 1px solid #b6d6bc;
}
.status-badge.pending {
  background: #fbf4e8;
  color: #8a6a3a;
  border: 1px solid #e3d0a8;
}
@media (max-width: 640px) {
  .partner-card { grid-template-columns: 1fr; }
  .charter-list li { padding: 60px 20px 20px; }
  .charter-list li::before { left: 20px; top: 16px; }
}

.cta-band {
  background: linear-gradient(135deg, #2a3d2b 0%, #3d5240 100%);
  color: #fff;
  padding: 48px 40px;
  border-radius: 14px;
  margin: 48px 0;
}
.cta-band h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: #fff;
  font-weight: 500;
}
.cta-band p { margin: 0 0 20px; color: rgba(255,255,255,0.9); line-height: 1.7; }
.cta-band a.btn-light {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}
.cta-band a.btn-light:hover { transform: translateY(-2px); }
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cta-band .btn-outline-light {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.cta-band .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ========================================================================
   DESTINATION PAGE
   ======================================================================== */
.pass-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.price-grid.price-grid--3cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 700px) {
  .price-grid.price-grid--3cols {
    grid-template-columns: 1fr;
  }
}
.pass-card,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pass-card:hover,
.price-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.pass-card.featured,
.price-card-featured {
  border: 2px solid var(--gold-deep);
  background: #fdfaf5;
  position: relative;
}
.pass-card.featured::after,
.price-card-featured::after {
  content: "Le meilleur rapport";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pass-duration,
.price-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.pass-price,
.price-amount {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 500;
  margin: 4px 0 6px;
}
.pass-price small,
.price-amount small { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.pass-validity,
.price-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.highlight-box {
  background: linear-gradient(135deg, #fdfaf5 0%, #f6ecd9 100%);
  border-left: 3px solid var(--gold-deep);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
}
.highlight-box h3,
.highlight-box h4 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 500;
}
.highlight-box p { margin: 0 0 10px; color: var(--ink-soft); line-height: 1.7; }
.highlight-box p:last-child { margin-bottom: 0; }
.highlight-box strong { color: var(--ink); }

.info-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

/* Variante grille fixe 2×2 — ex. infos ferry / blocs où l’édito impose 4 cases */
.info-tiles.info-tiles--2cols {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 520px) {
  .info-tiles.info-tiles--2cols {
    grid-template-columns: 1fr;
  }
}
.info-tile {
  background: #fdfaf5;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}
.info-tile-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 6px;
}
.info-tile-value {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.4;
}

/* Tuiles hub (guides : fond crème façon info-tile, lien cliquable) */
.hub-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
a.hub-tile {
  background: #fdfaf5;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
a.hub-tile:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 40, 80, 0.08);
}
.hub-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.hub-tile-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
}
.hub-tile-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.hub-tile-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: 4px;
}

.temple-card,
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
}
.temple-card .img,
.spotlight-card .spotlight-card-media {
  min-height: 220px;
  background-size: cover; background-position: center;
}
.temple-card .body,
.spotlight-card .spotlight-card-body { padding: 26px 28px; }
.temple-card h3,
.spotlight-card h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 500;
}
.temple-card .meta,
.spotlight-card .spotlight-card-meta {
  font-size: 0.82rem;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.temple-card p,
.spotlight-card p { margin: 0 0 10px; color: var(--ink-soft); line-height: 1.7; }
.temple-card .tip,
.spotlight-card .spotlight-card-tip {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 0.92rem; color: var(--ink);
}
.temple-card .tip strong,
.spotlight-card .spotlight-card-tip strong { color: var(--gold-deep); }
@media (max-width: 768px) {
  .temple-card,
  .spotlight-card { grid-template-columns: 1fr; }
  .temple-card .img,
  .spotlight-card .spotlight-card-media { min-height: 180px; }
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 32px 0;
}
.activity-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
a.activity-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
a.activity-card-link:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}
.activity-card .img {
  position: relative;
  z-index: 0;
  height: 170px;
  background-size: cover; background-position: center;
}
.activity-card .body {
  position: relative;
  z-index: 2;
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.activity-card h4 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 500;
}
.activity-card p { margin: 0 0 12px; color: var(--ink-soft); line-height: 1.6; font-size: 0.94rem; flex: 1; }
.activity-card .link {
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.activity-card .link:hover { text-decoration: underline; }
.activity-card .partner-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ===== Note douce (aside / précision) ===== */
.note-soft {
  background: #fafaf7;
  border-left: 3px solid var(--gold-deep);
  padding: 14px 18px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: 2px;
}
.note-soft em { color: var(--ink); font-style: normal; font-weight: 600; }

/* ========================================================================
   PAGES LÉGALES (mentions légales, politique de confidentialité)
   ======================================================================== */
.legal-page {
  padding: 3rem 0 5rem;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.legal-date {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  display: block;
}
.legal-page h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal-page h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 1.5rem 0 0.5rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
.legal-page ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal-page ul li { margin-bottom: 0.4rem; }
.legal-page a { color: var(--gold-deep); }
.legal-page a:hover { text-decoration: underline; }

.legal-toc {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.legal-toc p {
  font-size: 0.78rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}
.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}
.legal-toc-list li {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  break-inside: avoid;
}
.legal-toc-list a { color: var(--ink-soft); }
.legal-toc-list a:hover { color: var(--gold-deep); text-decoration: none; }
@media (max-width: 600px) { .legal-toc-list { columns: 1; } }

.legal-entity-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.legal-entity-card div {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.legal-entity-card strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 600px) { .legal-entity-card { grid-template-columns: 1fr; } }

.legal-highlight {
  background: #fff9ee;
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin: 1rem 0;
}
.legal-highlight p { margin-bottom: 0; color: var(--ink-soft); }

.breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

/* ========================================================================
   PAGE CONTACT
   ======================================================================== */
.contact-hero {
  background: var(--ink);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://easycambodia.sgp1.cdn.digitaloceanspaces.com/img/sebastian-latorre-lrG4nki2kYM-unsplash.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.contact-hero .wrap-narrow { position: relative; z-index: 1; }
.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.contact-hero .lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}
.contact-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.contact-hero .breadcrumb { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

.contact-layout { padding: 4rem 0 5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-group textarea { min-height: 150px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.form-submit:hover { background: var(--gold-deep); transform: translateY(-1px); }
.form-note { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.75rem; }
.form-note a { color: var(--gold-deep); }
.form-required { color: var(--gold); }

.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card-icon {
  width: 40px; height: 40px;
  background: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-card-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.contact-card-body span { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.6; }
.contact-card-body a { color: var(--gold-deep); font-weight: 500; }

.contact-topics { margin-top: 2rem; }
.contact-topics h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }
.topic-chip {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0.25rem 0.25rem 0.25rem 0;
}

.contact-faq { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line); }

.legal-contact-box {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}
.legal-contact-box h2 {
  color: #fff;
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  font-size: 1.2rem;
}
.legal-contact-box p { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.legal-contact-box a { color: var(--gold); }

/* ============================================================
   HUB INDEX PAGES
   ============================================================ */

/* Active nav state */
nav a[aria-current="page"] { color: var(--gold) !important; font-weight: 600; }
.site-header.solid nav a[aria-current="page"],
.site-header.scrolled nav a[aria-current="page"] { color: var(--gold-deep) !important; }

/* Hub hero */
.hub-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hub-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(27,40,80,0.55) 0%,
    rgba(27,40,80,0.15) 30%,
    rgba(27,40,80,0.80) 100%
  );
}
.hub-hero .wrap { position: relative; z-index: 1; text-align: center; }
.hub-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 auto 1rem;
  max-width: 800px;
}
.hub-lede {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto 1.75rem;
}
.hub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hub-chip {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.03em;
}
a.hub-chip {
  text-decoration: none;
  cursor: pointer;
}
a.hub-chip:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
}
.hub-hero .breadcrumb { margin-bottom: 1.5rem; }
.hub-hero .breadcrumb,
.hub-hero .breadcrumb a { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.hub-hero .breadcrumb a:hover { color: #fff; }

/* Hub section wrapper */
.hub-section { padding: 5rem 0; }
.hub-section + .hub-section { padding-top: 0; }
.hub-section-alt { background: var(--cream); }
.hub-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hub-section-head h2 { margin: 0; }
.hub-section-head .hub-see-all {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hub-section-head .hub-see-all:hover { color: var(--ink); }

/* Hub card grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub-grid-2 { grid-template-columns: repeat(2, 1fr); }
.hub-grid-4 { grid-template-columns: repeat(4, 1fr); }
.article-body .hub-grid--article { margin: 32px 0; }

/* Hub cards (image-led: destinations, activités, itinéraires) */
.hub-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(27,40,80,0.13);
  border-color: transparent;
}
.hub-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Liste / hub : pas de vignette lieu → logo Easy Cambodia (generate-city-category-pages.mjs) */
.hub-card-img--fallback-logo {
  background-color: var(--cream-deep);
  background-size: contain;
  background-repeat: no-repeat;
}
.hub-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.hub-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hub-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.hub-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.hub-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 auto;
  padding-bottom: 1rem;
}
.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.25rem;
  transition: color 0.2s;
}
.hub-card:hover .hub-card-link { color: var(--gold-deep); }

/* Featured (full-width) hub card */
.hub-card-full {
  grid-column: 1 / -1;
  flex-direction: row;
}
.hub-card-full .hub-card-img {
  aspect-ratio: auto;
  flex: 0 0 45%;
  min-height: 360px;
}
.hub-card-full .hub-card-body { padding: 36px 40px; justify-content: center; }
.hub-card-full .hub-card h3 { font-size: 1.6rem; }

/* Practical cards (icon-led: préparer, sur place, culture) */
.hub-pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hub-pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
/* Tuile cliquable sans <a> externe (évite <a> dans <a> quand la description contient des liens). */
.hub-pcard--tile {
  position: relative;
}
.hub-pcard-surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-decoration: none;
}
.hub-pcard-surface:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.hub-pcard--tile > :not(.hub-pcard-surface) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hub-pcard--tile p a {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.hub-pcard:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,40,80,0.09);
}
.hub-pcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.hub-pcard h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.hub-pcard p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.hub-pcard-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
a.hub-pcard-link {
  text-decoration: none;
}
a.hub-pcard-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Rich category cards: inner links (hub activités) */
.hub-pcard-block h3 a {
  color: inherit;
  text-decoration: none;
}
.hub-pcard-block h3 a:hover {
  color: var(--gold-deep);
}
.hub-pcard-block p a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-color: rgba(184, 151, 106, 0.45);
  text-underline-offset: 2px;
}
.hub-pcard-block p a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* CTA strip */
.hub-cta-strip {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem 0;
}
.hub-cta-strip h2 { color: #fff; margin: 0 0 0.5rem; font-size: 1.8rem; }
.hub-cta-strip p { color: rgba(255,255,255,0.75); margin: 0; font-family: 'Inter', sans-serif; }
.hub-cta-strip .btn { flex-shrink: 0; }

/* Hub intro text block */
.hub-intro {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.hub-intro h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.hub-intro p { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ink-soft); line-height: 1.75; }

/* Responsive hub */
@media (max-width: 960px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hub-pgrid { grid-template-columns: repeat(2, 1fr); }
  .hub-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-card-full { flex-direction: column; }
  .hub-card-full .hub-card-img { flex: none; min-height: 240px; width: 100%; }
  .hub-card-full .hub-card-body { padding: 28px 28px; }
  .hub-card-full .hub-card h3 { font-size: 1.3rem; }
  .hub-cta-strip { flex-direction: column; text-align: center; padding: 40px 36px; }
}
@media (max-width: 640px) {
  .hub-hero { padding: 140px 0 60px; }
  .hub-grid, .hub-pgrid, .hub-tiles-grid { grid-template-columns: 1fr; }
  .hub-grid-2 { grid-template-columns: 1fr; }
  .hub-section { padding: 3.5rem 0; }
  .hub-section-head { flex-direction: column; align-items: flex-start; }
  .hub-cta-strip { padding: 32px 24px; }
}

/* Lieux POI — galerie (visuels officiels établissement, crédit en bas) */
.article-body .lieux-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 1.5rem 0 2rem;
}
.article-body .lieux-gallery-item {
  margin: 0;
  background: var(--sand, #fdfaf5);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-body .lieux-gallery-item img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  vertical-align: middle;
}
.article-body .lieux-gallery-caption {
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.article-body .lieux-gallery-credit {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: -0.5rem 0 2rem;
  line-height: 1.5;
}

.article-body .lieux-map-figure {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
  background: var(--sand, #fdfaf5);
}
.article-body .lieux-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.article-body .lieux-map-intro {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.article-body .lieux-contact-hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Lieux POI — widget autres hôtels (bas de fiche) */
.article-body .lieux-more-hotels-widget {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.article-body .lieux-more-hotels-widget h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.article-body .lieux-more-hotels-lede {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.article-body .lieux-more-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .article-body .lieux-more-hotels-grid { grid-template-columns: 1fr; }
}
.article-body .lieux-more-hotels-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fdfaf5;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-body .lieux-more-hotels-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.article-body .lieux-more-hotels-name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.article-body .lieux-more-hotels-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.article-body .lieux-more-hotels-seeall {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
}

/* ========= Matomo / consentement analytics ========= */
.easy-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 99999;
  padding: clamp(14px, 3vw, 22px);
  pointer-events: none;
}
.easy-cookie-banner--off {
  opacity: 0;
  visibility: hidden;
}
.easy-cookie-banner--on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.easy-cookie-banner__panel {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 28px);
  flex-wrap: wrap;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(14px, 2.2vw, 20px) clamp(18px, 3vw, 26px);
  box-shadow:
    0 10px 40px rgba(27, 40, 80, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.easy-cookie-banner__copy {
  flex: 1 1 280px;
  min-width: min(280px, 100%);
}
.easy-cookie-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.easy-cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.52;
  color: var(--ink-soft);
}
.easy-cookie-banner__privacy {
  font-weight: 600;
  text-decoration: underline;
  color: var(--gold-deep);
  text-underline-offset: 3px;
}
.easy-cookie-banner__privacy:hover {
  color: var(--ink);
}
.easy-cookie-banner__actions-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 1 auto;
}
.easy-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.easy-cookie-banner__minimal {
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.3rem 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
.easy-cookie-banner__minimal:hover {
  color: var(--ink);
}
.easy-cookie-banner__btn {
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.easy-cookie-banner__btn:active {
  transform: scale(0.98);
}
.easy-cookie-banner__btn--outline {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.easy-cookie-banner__btn--outline:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.easy-cookie-banner__btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border: 1px solid rgba(138, 95, 45, 0.35);
  box-shadow: 0 6px 16px rgba(184, 134, 75, 0.28);
}
.easy-cookie-banner__btn--primary:hover {
  filter: brightness(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .easy-cookie-banner__btn {
    transition: none;
  }
}
