/* ══════════════════════════════════════════════════════════
   MATHI - VOYAGE FOLKLORIQUE
   Design sombre, luxueux, journal de voyage en cuir
   ══════════════════════════════════════════════════════════ */

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

/* ── Variables CSS ─────────────────────────────────────── */
:root {
  --noir: #0D0D0D;
  --charbon: #1A1A1A;
  --charbon-clair: #242424;
  --gris: #333333;
  --gris-clair: #888888;
  --or: #D4A843;
  --or-clair: #E8C874;
  --ambre: #F5C842;
  --rouge: #8B2500;
  --rouge-clair: #B33A00;
  --vert: #2D5A27;
  --vert-clair: #3D7A35;
  --blanc: #F5F0E8;
  --blanc-pur: #FFFFFF;

  --font-titre: 'Agbalumo', cursive;
  --font-corps: 'Cormorant Garamond', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Splash Screen ─────────────────────────────────────── */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__content {
  text-align: center;
  padding: 2rem;
  animation: splashFadeIn 1s ease;
}

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

.splash__title {
  font-family: var(--font-titre);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--or);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(212, 168, 67, 0.3);
}

.splash__kente {
  width: 120px;
  height: 6px;
  margin: 1rem auto;
  background:
    repeating-linear-gradient(
      90deg,
      var(--or) 0px,
      var(--or) 8px,
      var(--rouge) 8px,
      var(--rouge) 16px,
      var(--vert) 16px,
      var(--vert) 24px
    );
  border-radius: 3px;
}

.splash__subtitle {
  font-family: var(--font-corps);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--or-clair);
  margin-bottom: 0.5rem;
}

.splash__tagline {
  font-family: var(--font-corps);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--gris-clair);
  margin-bottom: 2.5rem;
}

.splash__btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: var(--font-corps);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  animation: splashPulse 2s ease-in-out infinite;
}

.splash__btn:hover {
  background: var(--ambre);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}

@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.3); }
  50% { box-shadow: 0 0 0 15px rgba(212, 168, 67, 0); }
}

/* ── Promo Banner (centered popup) ─────────────────────── */
.promo-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 9998;
  background: var(--charbon);
  border: 2px solid rgba(212, 168, 67, 0.4);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 550px;
  width: calc(100% - 2rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.promo-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.promo-banner__text {
  font-family: var(--font-corps);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--blanc);
  margin: 0;
}

.promo-banner__text strong {
  color: var(--or);
  font-size: 1.35rem;
}

.promo-banner__text a {
  color: var(--ambre);
  text-decoration: underline;
  font-weight: 600;
}

.promo-banner__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gris-clair);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.promo-banner__close:hover {
  color: var(--or);
  transform: scale(1.2);
}

/* Dim background behind banner */
.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.promo-overlay.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .promo-banner {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
  }

  .promo-banner__text {
    font-size: 1.05rem;
  }

  .promo-banner__text strong {
    font-size: 1.15rem;
  }

  .promo-banner__close {
    font-size: 2rem;
    top: 0.5rem;
    right: 0.7rem;
  }
}

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

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

body {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--blanc);
  background-color: var(--noir);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Grain Texture Overlay ─────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titre);
  font-weight: 400;
  line-height: 1.2;
  color: var(--or);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.4);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

a {
  color: var(--or);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--ambre);
}

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

/* ── Kente Pattern Separator ───────────────────────────── */
.kente-separator {
  width: 100%;
  height: 24px;
  background:
    repeating-linear-gradient(
      60deg,
      var(--or) 0px,
      var(--or) 2px,
      transparent 2px,
      transparent 12px
    ),
    repeating-linear-gradient(
      -60deg,
      var(--rouge) 0px,
      var(--rouge) 2px,
      transparent 2px,
      transparent 12px
    ),
    repeating-linear-gradient(
      90deg,
      var(--vert) 0px,
      var(--vert) 2px,
      transparent 2px,
      transparent 12px
    );
  background-size: 24px 24px;
  opacity: 0.7;
}

.kente-separator--thick {
  height: 40px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      var(--or) 8px,
      var(--or) 10px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      var(--rouge) 8px,
      var(--rouge) 10px
    ),
    repeating-linear-gradient(
      0deg,
      var(--vert) 0px,
      var(--vert) 3px,
      transparent 3px,
      transparent 20px
    );
  background-color: var(--charbon);
  opacity: 0.8;
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), padding var(--transition);
}

.nav--scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.nav__logo {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  color: var(--or);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.4);
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 500;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--or);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--or);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 18px; }

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.5) 50%,
    rgba(13, 13, 13, 0.9) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--or);
  text-shadow: 0 4px 30px rgba(212, 168, 67, 0.3);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero__subtitle {
  font-family: var(--font-corps);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero__scroll {
  display: inline-block;
  margin-top: 2rem;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 30px;
  height: 30px;
  stroke: var(--or);
  stroke-width: 2;
  fill: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ── Post Hero (article page) ──────────────────────────── */
.post-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.post-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.post-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.1) 0%,
    rgba(13, 13, 13, 0.85) 100%
  );
}

.post-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) var(--space-md);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.post-hero__meta {
  font-family: var(--font-corps);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--or-clair);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.post-hero__title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--or);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.post-hero__location {
  font-family: var(--font-corps);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.7);
}

/* ── Section ───────────────────────────────────────────── */
.section {
  padding: var(--space-xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--or);
  margin: 1rem auto 0;
}

/* ── Articles Grid ─────────────────────────────────────── */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--charbon);
  display: block;
}

.article-card__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-card__img {
  transform: scale(1.05);
}

.article-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.9) 0%,
    rgba(13, 13, 13, 0.1) 60%
  );
  transition: background var(--transition);
}

.article-card:hover .article-card__overlay {
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.3) 60%
  );
}

.article-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.article-card:hover .article-card__content {
  transform: translateY(0);
}

.article-card__date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--or-clair);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.article-card__title {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--or);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.5);
}

.article-card__excerpt {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-card__excerpt {
  opacity: 1;
  transform: translateY(0);
}

.article-card__location {
  font-size: 0.85rem;
  color: var(--or-clair);
  font-style: italic;
  margin-top: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity var(--transition);
}

.article-card:hover .article-card__location {
  opacity: 1;
}

/* ── Accordion Articles ────────────────────────────────── */
.articles-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--charbon);
  border: 1px solid rgba(212, 168, 67, 0.08);
  transition: border-color var(--transition);
}

.accordion-item.open {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.08), 0 8px 32px rgba(0,0,0,0.4);
  margin: var(--space-lg) 0;
  position: relative;
  z-index: 2;
}

/* Header (clickable card) */
.accordion-header {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.accordion-header__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.accordion-header:hover .accordion-header__img {
  transform: scale(1.03);
}

.accordion-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.15) 55%);
  transition: background var(--transition);
}

.accordion-header:hover .accordion-header__overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.25) 55%);
}

.accordion-header__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.accordion-header__date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--or-clair);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.accordion-header__title {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--or);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.5);
}

.accordion-header__excerpt {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.75);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.accordion-header__location {
  font-size: 0.85rem;
  color: var(--or-clair);
  font-style: italic;
  margin-top: 0.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  margin-bottom: 0;
}

.accordion-header__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--or);
  transition: transform var(--transition);
  opacity: 0.7;
}

.accordion-item.open .accordion-header__arrow {
  transform: rotate(180deg);
}

/* Body (expandable) */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.accordion-item.open .accordion-body {
  max-height: 20000px;
  transition: max-height 1s ease;
}

.accordion-body__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(180deg, rgba(26,26,26,1) 0%, rgba(20,18,14,1) 100%);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.accordion-body__inner .block-heading {
  font-family: var(--font-titre);
  font-size: 2rem;
  color: var(--or);
  margin: var(--space-lg) 0 var(--space-sm);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.accordion-body__inner .block-heading:first-child {
  margin-top: 0;
}

.accordion-body__inner .block-subheading {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  color: var(--or-clair);
  margin: var(--space-md) 0 var(--space-xs);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.accordion-body__inner .block-text {
  margin-bottom: var(--space-md);
}

.accordion-body__inner .block-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.85);
}

.accordion-body__inner .block-text h2,
.accordion-body__inner .block-text h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.accordion-body__inner .block-text blockquote {
  border-left: 3px solid var(--or);
  padding-left: 1.5rem;
  margin: var(--space-md) 0;
  font-style: italic;
  color: rgba(245,240,232,0.7);
}

.accordion-body__inner .block-text strong {
  color: var(--or-clair);
  font-weight: 600;
}

.accordion-body__inner .block-image {
  margin: var(--space-lg) 0;
}

.accordion-body__inner .block-image img {
  width: 100%;
  border-radius: var(--radius);
}

.accordion-body__inner .block-image figcaption {
  text-align: center;
  padding: 0.8rem 0;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gris-clair);
}

.accordion-body__inner .post-map {
  margin: var(--space-lg) 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.2);
}

.accordion-body__inner .post-map__container {
  height: 300px;
  width: 100%;
}

.accordion-close {
  display: block;
  margin: var(--space-lg) auto 0;
  font-size: 1rem;
  padding: 0.8rem 2.5rem;
  letter-spacing: 0.5px;
}

/* Sticky close button at bottom of viewport when accordion is open */
.accordion-close-sticky {
  position: sticky;
  bottom: 1rem;
  display: block;
  margin: var(--space-md) auto 0;
  background: var(--or);
  color: var(--noir);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-family: var(--font-titre);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  transition: all var(--transition);
  z-index: 10;
}

.accordion-close-sticky:hover {
  background: var(--or-clair);
  box-shadow: 0 4px 28px rgba(212, 168, 67, 0.6);
  transform: translateY(-2px);
}

/* Kente separator at the end of accordion content */
.accordion-body__separator {
  height: 6px;
  margin: var(--space-lg) 0 0;
  background: repeating-linear-gradient(
    90deg,
    var(--or) 0px, var(--or) 12px,
    var(--rouge) 12px, var(--rouge) 24px,
    var(--vert) 24px, var(--vert) 36px,
    var(--or-clair) 36px, var(--or-clair) 48px
  );
  border-radius: 3px;
  opacity: 0.6;
}

/* Inline map on home page */
.inline-map-container {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Ensure Leaflet maps render above dark backgrounds */
.leaflet-container {
  background: #1a1a1a !important;
  z-index: 1;
}

/* ── No Posts ──────────────────────────────────────────── */
.no-posts {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--gris-clair);
  font-style: italic;
  font-size: 1.2rem;
}

/* ── Post Content ──────────────────────────────────────── */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.post-content .block-text {
  margin-bottom: var(--space-md);
}

.post-content .block-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.85);
}

.post-content .block-text h2,
.post-content .block-text h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.post-content .block-text blockquote {
  border-left: 3px solid var(--or);
  padding-left: 1.5rem;
  margin: var(--space-md) 0;
  font-style: italic;
  color: rgba(245, 240, 232, 0.7);
}

.post-content .block-text strong {
  color: var(--or-clair);
  font-weight: 600;
}

.post-content .block-image {
  margin: var(--space-lg) calc(-1 * var(--space-md));
}

.post-content .block-image img {
  width: 100%;
  border-radius: var(--radius);
}

.post-content .block-image figcaption {
  text-align: center;
  padding: 0.8rem var(--space-md);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gris-clair);
}

/* ── Mini Map in Post ──────────────────────────────────── */
.post-map {
  margin: var(--space-lg) 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.post-map__container {
  height: 300px;
  width: 100%;
}

/* ── Post Navigation ───────────────────────────────────── */
.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.post-nav__link {
  flex: 1;
  padding: 1.5rem;
  background: var(--charbon);
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-nav__link:hover {
  background: var(--charbon-clair);
  transform: translateY(-2px);
}

.post-nav__link--next {
  text-align: right;
}

.post-nav__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gris-clair);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.post-nav__title {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--or);
}

/* ── Map Page ──────────────────────────────────────────── */
.map-page {
  display: flex;
  height: calc(100vh - 0px);
  padding-top: 60px;
}

.map-container {
  flex: 1;
  height: 100%;
}

.map-sidebar {
  width: 350px;
  background: var(--charbon);
  border-left: 1px solid rgba(212, 168, 67, 0.15);
  overflow-y: auto;
  padding: var(--space-md);
  transition: transform var(--transition);
}

.map-sidebar__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.map-sidebar__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background var(--transition);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: var(--radius);
}

.map-sidebar__item:hover {
  background: rgba(212, 168, 67, 0.05);
}

.map-sidebar__item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.map-sidebar__item-info h4 {
  font-family: var(--font-titre);
  font-size: 1rem;
  color: var(--or);
  margin-bottom: 0.2rem;
}

.map-sidebar__item-info p {
  font-size: 0.85rem;
  color: var(--gris-clair);
  font-weight: 300;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.map-sidebar__toggle {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1001;
  background: var(--or);
  color: var(--noir);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

/* Leaflet custom popup */
.leaflet-popup-content-wrapper {
  background: var(--charbon) !important;
  color: var(--blanc) !important;
  border: 1px solid rgba(212, 168, 67, 0.3) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-popup-tip {
  background: var(--charbon) !important;
  border: 1px solid rgba(212, 168, 67, 0.3) !important;
}

.leaflet-popup-close-button {
  color: var(--or) !important;
}

.map-popup {
  width: 220px;
}

.map-popup img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.map-popup h4 {
  font-family: var(--font-titre);
  color: var(--or);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.map-popup p {
  font-size: 0.85rem;
  color: var(--gris-clair);
  margin-bottom: 0.5rem;
}

.map-popup a {
  font-size: 0.85rem;
  color: var(--or);
  font-weight: 600;
}

/* ── Music Player ──────────────────────────────────────── */
.music-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  border: 1.5px solid var(--or);
  color: var(--or);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.music-btn:hover {
  background: rgba(212, 168, 67, 0.3);
  transform: scale(1.1);
}

.music-btn.playing {
  animation: pulse-music 2s infinite;
}

.music-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
}

.music-btn svg polygon {
  fill: currentColor;
}

.music-btn svg line,
.music-btn svg path {
  fill: none;
}

@keyframes pulse-music {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212, 168, 67, 0); }
}

/* ── Music Menu ────────────────────────────────────────── */
.music-menu {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 1001;
  background: rgba(20, 18, 14, 0.95);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(212,168,67,0.08);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.25s ease;
}

.music-menu.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.music-menu__track,
.music-menu__mute {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: none;
  background: none;
  color: rgba(245,240,232,0.7);
  font-family: var(--font-corps);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease;
  text-align: left;
}

.music-menu__track:hover,
.music-menu__mute:hover {
  background: rgba(212, 168, 67, 0.12);
  color: var(--or-clair);
}

.music-menu__track.active {
  background: rgba(212, 168, 67, 0.18);
  color: var(--or);
  font-weight: 600;
}

.music-menu__mute {
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  margin-top: 0.3rem;
  padding-top: 0.7rem;
}

.music-menu__mute.active {
  color: var(--rouge);
}

.music-menu__icon {
  font-size: 0.85rem;
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

/* ── Admin Button & Modal ──────────────────────────────── */
.admin-toggle {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--or-clair);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.admin-toggle:hover {
  color: var(--ambre);
  border-color: var(--or);
  background: rgba(212, 168, 67, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
}

.admin-toggle.logged-in {
  color: var(--noir);
  background: var(--or);
  border-color: var(--or);
}

.admin-toggle.logged-in:hover {
  background: var(--ambre);
  color: var(--noir);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--charbon);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  padding: var(--space-md);
  width: 90%;
  max-width: 450px;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gris-clair);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Form Elements ─────────────────────────────────────── */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--or-clair);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--noir);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--or);
}

.form-input::placeholder {
  color: var(--gris);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--gold {
  background: var(--or);
  color: var(--noir);
}

.btn--gold:hover {
  background: var(--ambre);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

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

.btn--outline:hover {
  background: rgba(212, 168, 67, 0.1);
}

.btn--danger {
  background: var(--rouge);
  color: var(--blanc);
}

.btn--danger:hover {
  background: var(--rouge-clair);
}

.btn--sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

.form-error {
  color: var(--rouge-clair);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ── Admin Edit Mode ───────────────────────────────────── */
.admin-bar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(139, 37, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.6rem 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
  font-size: 0.9rem;
}

.admin-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--or-clair);
  font-weight: 500;
}

.admin-bar__right {
  display: flex;
  gap: 0.5rem;
}

.admin-block-controls {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  gap: 0.3rem;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
}

.admin-editable:hover .admin-block-controls {
  opacity: 1;
}

.admin-editable {
  position: relative;
  outline: 1px dashed transparent;
  transition: outline-color var(--transition);
}

.admin-editable:hover {
  outline-color: rgba(212, 168, 67, 0.4);
}

.admin-block-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}

.admin-block-btn--edit {
  background: var(--or);
  color: var(--noir);
}

.admin-block-btn--delete {
  background: var(--rouge);
  color: var(--blanc);
}

/* Admin Editor Panel */
.admin-editor {
  position: fixed;
  top: 0;
  right: -500px;
  width: 450px;
  max-width: 90vw;
  height: 100vh;
  background: var(--charbon);
  border-left: 1px solid rgba(212, 168, 67, 0.2);
  z-index: 2001;
  overflow-y: auto;
  padding: var(--space-md);
  transition: right var(--transition);
}

.admin-editor.active {
  right: 0;
}

.admin-editor__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.admin-editor__close {
  background: none;
  border: none;
  color: var(--gris-clair);
  font-size: 1.5rem;
  cursor: pointer;
}

.admin-blocks-list {
  list-style: none;
}

.admin-blocks-list li {
  background: var(--noir);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: grab;
}

.admin-blocks-list li .block-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--or);
  background: rgba(212, 168, 67, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
}

.admin-blocks-list li .block-preview {
  flex: 1;
  margin: 0 0.8rem;
  font-size: 0.85rem;
  color: var(--gris-clair);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-add-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.admin-add-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(212,168,67,0.25);
  border-radius: var(--radius);
  color: var(--gris-clair);
  font-family: var(--font-corps);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-add-btn:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--or);
  color: var(--or);
}

.admin-add-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(212,168,67,0.12);
  color: var(--or);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Admin FAB (floating action button) */
.admin-fab {
  position: fixed;
  bottom: 5rem;
  left: 2rem;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--or);
  color: var(--noir);
  border: none;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,168,67,0.4);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-fab:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 24px rgba(212,168,67,0.6);
}

/* Admin Toast Notification */
.admin-toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 10001;
  background: rgba(20, 18, 14, 0.95);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--or-clair);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.admin-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.admin-toast--error {
  border-color: rgba(139, 37, 0, 0.6);
  color: #ff8a80;
}

/* Location picker */
.location-picker {
  height: 250px;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--charbon);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.footer__text {
  font-family: var(--font-corps);
  font-size: 0.9rem;
  color: var(--gris-clair);
  font-weight: 300;
}

.footer__text a {
  color: var(--or);
}

/* ── Scroll Animations ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Utilities ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--or); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-md { margin-top: var(--space-md); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .map-sidebar {
    width: 300px;
  }

  .article-card__img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .accordion-header__img {
    height: 220px;
  }

  .accordion-header__title {
    font-size: 1.4rem;
  }

  .accordion-header__content {
    padding: 1.2rem;
  }

  .accordion-header__excerpt,
  .accordion-header__location {
    display: block;
  }

  .accordion-body__inner {
    padding: var(--space-md) var(--space-sm);
  }

  .accordion-body__inner .block-image {
    margin-left: 0;
    margin-right: 0;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--charbon);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(212, 168, 67, 0.15);
    z-index: 1001;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__toggle {
    display: block;
    z-index: 1002;
  }

  .article-card__img {
    height: 250px;
  }

  .article-card__title {
    font-size: 1.4rem;
  }

  .article-card__excerpt {
    opacity: 1;
    transform: translateY(0);
  }

  .article-card__location {
    opacity: 1;
  }

  .article-card__content {
    transform: translateY(0);
  }

  .post-content .block-image {
    margin-left: 0;
    margin-right: 0;
  }

  /* Map page mobile */
  .map-page {
    flex-direction: column;
  }

  .map-container {
    height: 55vh;
  }

  .map-sidebar {
    width: 100%;
    height: 45vh;
    border-left: none;
    border-top: 1px solid rgba(212, 168, 67, 0.15);
  }

  .map-sidebar.hidden {
    transform: translateY(100%);
  }

  .map-sidebar__toggle {
    display: block;
  }

  .post-nav {
    flex-direction: column;
  }

  .post-nav__link--next {
    text-align: left;
  }

  .music-btn {
    bottom: 1rem;
    right: 1rem;
    width: 46px;
    height: 46px;
  }

  .admin-toggle {
    bottom: 1rem;
    left: 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .admin-editor {
    width: 100%;
    max-width: 100vw;
  }

  .admin-bar {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .modal {
    width: 95%;
    padding: 1.5rem;
  }

  .hero {
    min-height: 500px;
  }

  .post-hero {
    min-height: 350px;
    height: 55vh;
  }

  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .post-content {
    padding: var(--space-md) var(--space-sm);
  }

  .post-nav {
    padding: var(--space-md) var(--space-sm);
  }

  .footer {
    padding: var(--space-md) var(--space-sm);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .article-card__img {
    height: 200px;
  }

  .post-hero__title {
    font-size: 2rem;
  }

  .nav {
    padding: 1rem;
  }

  .nav--scrolled {
    padding: 0.6rem 1rem;
  }

  .map-sidebar__item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .map-sidebar__item-img {
    width: 100%;
    height: 120px;
  }
}

/* Touch devices: always show card info */
@media (hover: none) {
  .article-card__content {
    transform: translateY(0);
  }

  .article-card__excerpt {
    opacity: 1;
    transform: translateY(0);
  }

  .article-card__location {
    opacity: 1;
  }

  .admin-block-controls {
    opacity: 1;
  }
}
