/* ============================================================
   BLOG TROTTEUR — Magazine de voyage
   Design éditorial · 1440px · blog-trotteur.com
   ============================================================ */

/* --- Variables --- */
:root {
  --container: 1440px;
  --gutter: clamp(1.25rem, 3vw, 3rem);

  --cream: #F6F1E9;
  --sand: #EDE4D6;
  --ink: #141210;
  --ink-soft: #3D3830;
  --ink-muted: #7A7268;

  --terracotta: #C04E2F;
  --terracotta-light: #E8734F;
  --forest: #1E3A32;
  --forest-light: #2D5A4C;
  --teal: #2A6B6B;
  --gold: #B8892A;
  --coral: #D4654A;

  /* Badges cartes — continents & rubriques */
  --badge-terracotta: #C04E2F;
  --badge-yellow: #E8B923;
  --badge-sky: #6EC1E8;
  --badge-red: #C0392B;
  --badge-mauve: #8B5BA8;
  --badge-azure: #0097C8;
  --badge-black: #141210;
  --badge-eco: #8FD17A;
  --badge-activities: #1E3A5F;
  --badge-gray: #7A7268;

  --white: #FFFFFF;
  --glass: rgba(246, 241, 233, 0.82);
  --glass-dark: rgba(20, 18, 16, 0.88);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(20, 18, 16, 0.06);
  --shadow-md: 0 8px 32px rgba(20, 18, 16, 0.10);
  --shadow-lg: 0 24px 64px rgba(20, 18, 16, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --header-height: 100px;
  --header-bar-height: 6.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- Grain overlay --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* --- Cursor glow --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 78, 47, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: multiply;
}

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    background 0.25s,
    box-shadow 0.25s,
    color 0.25s;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 78, 47, 0.3);
}

.btn--primary:hover {
  background: var(--terracotta-light);
  box-shadow: 0 6px 24px rgba(192, 78, 47, 0.4);
  transform: translateY(-1px);
}

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

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

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--eco {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--eco:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--badge-terracotta);
  color: var(--white);
}

.badge--light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Continents */
.badge--terracotta { background: var(--badge-terracotta); color: var(--white); }
.badge--yellow { background: var(--badge-yellow); color: var(--ink); }
.badge--sky { background: var(--badge-sky); color: var(--ink); }
.badge--red { background: var(--badge-red); color: var(--white); }
.badge--mauve { background: var(--badge-mauve); color: var(--white); }
.badge--azure { background: var(--badge-azure); color: var(--white); }
.badge--black { background: var(--badge-black); color: var(--white); }

/* Rubriques */
.badge--eco { background: var(--badge-eco); color: var(--ink); }
.badge--activities { background: var(--badge-activities); color: var(--white); }
.badge--gray { background: var(--badge-gray); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: visible;
  background: transparent;
}

.site-header > .header-top,
.site-header > .header-main {
  position: relative;
}

.site-header.is-scrolled .header-top,
.page-archive .header-top,
.page-static .header-top {
  display: none;
}

.site-header.is-scrolled .header-top {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
}

.header-top {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s, padding 0.3s;
  max-height: 40px;
}

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

.header-tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.15em;
}

.header-top__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  transition: color 0.2s;
}

.header-link:hover { color: var(--white); }

.header-divider { opacity: 0.3; }

.header-main {
  position: relative;
  background: transparent;
  transition:
    background-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  overflow: visible;
}

/* Fond crème opaque au scroll — pas de backdrop-filter (rogne le « g ») */
.site-header.is-scrolled .header-main,
.page-archive .header-main,
.page-static .header-main {
  background-color: var(--cream);
  box-shadow: 0 1px 0 rgba(20, 18, 16, 0.08), var(--shadow-sm);
}

body:not(.page-archive):not(.page-static) .site-header:not(.is-scrolled) .header-main {
  background: linear-gradient(to bottom, rgba(20, 18, 16, 0.55) 0%, transparent 100%);
}

.header-main__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 1rem;
  height: var(--header-bar-height);
  box-sizing: border-box;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  overflow: visible;
}

/* Logo — tailles design ; Instrument Sans pour descendantes complètes */
.logo {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.875rem;
  flex-shrink: 0;
  overflow: visible;
}

.logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--terracotta);
  transition: transform 0.4s var(--ease-spring);
}

.logo:hover .logo__icon { transform: rotate(-8deg) scale(1.05); }

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  overflow: visible;
}

.logo__name {
  display: block;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--ink);
  transition: color 0.3s;
  overflow: visible;
}

.logo--footer .logo__text {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
}

.logo--footer .logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.site-header:not(.is-scrolled) .logo__name { color: var(--white); }

.logo__sub {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.3s;
  overflow: visible;
}

.site-header:not(.is-scrolled) .logo__sub { color: rgba(255, 255, 255, 0.6); }

.main-nav {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: end;
  overflow: hidden;
}

/* Header actions — toujours visible à droite (au-dessus du menu si manque de place) */
.header-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.site-header.is-scrolled .search-btn,
.page-archive .site-header .search-btn,
.page-static .site-header .search-btn,
.page-article .site-header.is-scrolled .search-btn {
  color: var(--ink);
  background: rgba(20, 18, 16, 0.06);
  border-color: rgba(20, 18, 16, 0.2);
}

.search-btn svg {
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  color: inherit;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.main-nav__link {
  position: relative;
  padding: 0.5rem 0.6875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.site-header:not(.is-scrolled) .main-nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.main-nav__link:hover::after,
.main-nav__link.is-active::after {
  width: calc(100% - 1.375rem);
  left: 0.6875rem;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--terracotta);
}

/* Sous-menu Destinations */
.main-nav__list > .menu-item-has-children {
  position: relative;
}

.main-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--white);
  border: 1px solid rgba(20, 18, 16, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    visibility 0.25s;
  z-index: 200;
}

.main-nav__list > .menu-item-has-children:hover > .sub-menu,
.main-nav__list > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav__list .sub-menu .main-nav__link {
  display: block;
  padding: 0.625rem 1rem;
  white-space: normal;
  font-size: 0.875rem;
}

.main-nav__list .sub-menu .main-nav__link::after {
  display: none;
}

.site-header:not(.is-scrolled) .main-nav__list .sub-menu {
  background: var(--glass-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-header:not(.is-scrolled) .main-nav__list .sub-menu .main-nav__link {
  color: rgba(255, 255, 255, 0.88);
}

.site-header:not(.is-scrolled) .main-nav__list .sub-menu .main-nav__link:hover,
.site-header:not(.is-scrolled) .main-nav__list .sub-menu .main-nav__link.is-active {
  color: var(--terracotta-light);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav__list .sub-menu .main-nav__link:hover,
.main-nav__list .sub-menu .main-nav__link.is-active {
  background: rgba(192, 78, 47, 0.06);
}

.site-header:not(.is-scrolled) .main-nav__link:hover,
.site-header:not(.is-scrolled) .main-nav__link.is-active {
  color: var(--white);
}

.site-header:not(.is-scrolled) .main-nav__link.is-active::after,
.site-header:not(.is-scrolled) .main-nav__link:hover::after {
  background: var(--white);
}

.search-btn:hover {
  background: rgba(192, 78, 47, 0.12);
  border-color: rgba(192, 78, 47, 0.35);
  color: var(--terracotta);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header:not(.is-scrolled) .menu-toggle span { background: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-out) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 18, 16, 0.85) 0%, rgba(20, 18, 16, 0.2) 50%, rgba(20, 18, 16, 0.35) 100%),
    linear-gradient(135deg, rgba(30, 58, 50, 0.3) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 80px);
  max-width: 780px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.hero__reading::before {
  content: '·';
  margin-right: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--terracotta-light);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta-light);
  opacity: 0.5;
}

.hero__excerpt {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   SECTIONS — Shared
   ============================================================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

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

.section--sand {
  background: var(--sand);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.section-header__left { max-width: 400px; }

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--terracotta-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title--light { color: var(--cream); }

.section-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 380px;
}

/* En-tête section Destinations */
.section-header--destinations {
  grid-template-columns: minmax(12rem, auto) minmax(16rem, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.section-header--destinations-no-intro {
  grid-template-columns: 1fr auto;
}

.section-header--destinations .section-header__left {
  max-width: none;
}

.section-title--single-line {
  white-space: nowrap;
}

.section-intro--destinations {
  max-width: none;
  min-width: 0;
  text-wrap: pretty;
  hyphens: auto;
}

@media (max-width: 900px) {
  .section-header--destinations {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-header--destinations-no-intro {
    grid-template-columns: 1fr;
  }

  .section-title--single-line {
    white-space: normal;
  }
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap 0.3s var(--ease-out);
  white-space: nowrap;
}

.section-link svg { width: 18px; height: 18px; }

.section-link:hover { gap: 0.875rem; }

/* ============================================================
   DESTINATIONS GRID
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
  align-items: stretch;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Grille magazine : 2 verticales côte à côte (gauche haut), 2 horizontales empilées (gauche bas), 2 compactes + 1 large (droite) */
.destinations-grid .dest-card:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1;
}

.destinations-grid .dest-card:nth-child(2) {
  grid-column: 5 / 9;
  grid-row: 1;
}

.destinations-grid .dest-card:nth-child(3) {
  grid-column: 1 / 9;
  grid-row: 2;
}

.destinations-grid .dest-card:nth-child(4) {
  grid-column: 1 / 9;
  grid-row: 3;
}

.destinations-grid .dest-card:nth-child(5) {
  grid-column: 9 / 11;
  grid-row: 1;
}

.destinations-grid .dest-card:nth-child(6) {
  grid-column: 11 / 13;
  grid-row: 1;
}

.dest-card--wide {
  grid-column: 9 / 13;
  grid-row: 2 / 4;
}

.dest-card--stack-left .dest-card__link {
  flex-direction: row;
}

.dest-card--stack-left .dest-card__media {
  width: 42%;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.dest-card--stack-left .dest-card__body {
  flex: 1;
}

.dest-card--stack-left .dest-card__excerpt {
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dest-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dest-card__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.dest-card:not(.dest-card--stack-left):not(.dest-card--wide) .dest-card__media {
  aspect-ratio: 4/3;
}

.dest-card--wide .dest-card__media {
  aspect-ratio: 21/9;
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.dest-card:hover .dest-card__overlay { opacity: 1; }

.dest-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.dest-card--stack-left .dest-card__body {
  padding: 1.25rem 1.5rem;
  justify-content: center;
}

.dest-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.25s;
}

.dest-card--stack-left .dest-card__title {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
}

.dest-card:hover .dest-card__title { color: var(--terracotta); }

.dest-card__excerpt {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.dest-card:not(.dest-card--stack-left) .dest-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dest-card__meta {
  margin-top: auto;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* ============================================================
   ACTIVITÉS
   ============================================================ */
.activities-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.activity-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.35s var(--ease-out);
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.activity-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.activity-card:hover::before { transform: scaleX(1); }

.activity-card__icon {
  width: 40px;
  height: 40px;
  color: var(--terracotta-light);
  margin-bottom: 1.25rem;
}

.activity-card__icon svg { width: 100%; height: 100%; }

.activity-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.activity-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.activity-card__title a {
  color: inherit;
  transition: color 0.2s;
}

.activity-card__title a:hover {
  color: var(--terracotta-light);
}

.activity-card__media {
  display: block;
  margin-bottom: 0.875rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.activity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.activity-card__text {
  font-size: 0.875rem;
  color: rgba(246, 241, 233, 0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.activity-card__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--terracotta-light);
  transition: color 0.2s, letter-spacing 0.3s;
}

.activity-card__link:hover,
.activity-card:hover .activity-card__link {
  color: #fff;
  letter-spacing: 0.05em;
}

.featured-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-experience__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.featured-experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.featured-experience:hover .featured-experience__media img {
  transform: scale(1.04);
}

.featured-experience__content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.featured-experience__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.featured-experience__content p {
  color: rgba(246, 241, 233, 0.65);
  line-height: 1.7;
}

.featured-experience__content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ============================================================
   CONSEILS PRATIQUES
   ============================================================ */
.conseils-layout {
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.conseils-header .section-intro {
  margin-top: 1rem;
  max-width: none;
}

.conseils-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.conseil-item {
  border-bottom: 1px solid rgba(20, 18, 16, 0.08);
}

.conseil-item:first-child .conseil-item__link { padding-top: 0; }

.conseil-item__link {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.375rem 0;
  transition: opacity 0.25s;
}

.conseil-item:hover .conseil-item__link {
  opacity: 0.92;
}

.conseil-item__media {
  flex-shrink: 0;
  width: 112px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
}

.conseil-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.conseil-item:hover .conseil-item__media img {
  transform: scale(1.06);
}

.conseil-item__body {
  flex: 1;
  min-width: 0;
  padding-top: 0.125rem;
}

.conseil-item__cat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.conseil-item__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.conseil-item:hover .conseil-item__title { color: var(--terracotta); }

.conseil-item__text {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.conseils-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.tip-box {
  padding: 1.75rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
}

.tip-box__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1rem;
}

.tip-box__quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.tip-box cite {
  font-size: 0.8125rem;
  color: rgba(246, 241, 233, 0.5);
  font-style: normal;
}

.checklist-box {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.checklist-box h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checklist-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.checklist-box li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* ============================================================
   MODE DE VIE
   ============================================================ */
.lifestyle-feature {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}

.lifestyle-feature__content p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 1.25rem 0 1.75rem;
}

.lifestyle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1.5px solid rgba(20, 18, 16, 0.12);
  border-radius: 100px;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
}

.tag:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.lifestyle-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.lifestyle-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.lifestyle-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.lifestyle-card--large {
  grid-row: 1 / 3;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 0.6s var(--ease-out);
}

.lifestyle-card--large img { min-height: 100%; }

.lifestyle-card:hover img { transform: scale(1.05); }

.lifestyle-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.75) 0%, transparent 60%);
  transition: background 0.35s;
}

.lifestyle-card:hover .lifestyle-card__overlay {
  background: linear-gradient(to top, rgba(20, 18, 16, 0.85) 0%, rgba(20, 18, 16, 0.1) 60%);
}

.lifestyle-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.5rem;
}

.lifestyle-card--large .lifestyle-card__overlay h3 {
  font-size: 1.5rem;
}

/* ============================================================
   ECO-TOURISME
   ============================================================ */
.section--eco {
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.eco-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.eco-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 58, 50, 0.92) 0%, rgba(20, 18, 16, 0.85) 100%);
}

.eco-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eco-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(246, 241, 233, 0.7);
  margin: 1.25rem 0 2.5rem;
}

.eco-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.eco-card {
  padding: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition:
    background 0.35s,
    transform 0.35s var(--ease-out);
  overflow: hidden;
}

.eco-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.25rem 1.75rem;
  color: inherit;
}

.eco-card__media {
  margin: -1.25rem -1.25rem 1rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.eco-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.eco-card:hover .eco-card__media img {
  transform: scale(1.05);
}

.eco-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.eco-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.eco-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.eco-card p {
  font-size: 0.875rem;
  color: rgba(246, 241, 233, 0.6);
  line-height: 1.6;
}

/* ============================================================
   ÉQUIPEMENT
   ============================================================ */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gear-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}

.gear-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gear-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gear-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.gear-card__rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.gear-card__body {
  padding: 1.5rem;
}

.gear-card__cat {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.gear-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0;
  line-height: 1.3;
}

.gear-card__body p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.gear-card__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.gear-card__link:hover { color: var(--terracotta); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 78, 47, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.5rem 0 0.75rem;
}

.newsletter-box__content p {
  color: rgba(246, 241, 233, 0.6);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.35); }

.newsletter-form input:focus {
  border-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-box__note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: rgba(246, 241, 233, 0.35);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(246, 241, 233, 0.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-brand__tagline {
  margin: 0.875rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 233, 0.45);
}

.footer-brand__text {
  margin: 0 0 1.5rem;
  max-width: 320px;
  color: rgba(246, 241, 233, 0.62);
}

.logo--footer .logo__name { color: var(--cream); }
.logo--footer .logo__sub { color: rgba(246, 241, 233, 0.4); }

/* Priorité sur les surcharges header des pages intérieures */
.site-footer .logo--footer .logo__name { color: var(--cream); }
.site-footer .logo--footer .logo__sub { color: rgba(246, 241, 233, 0.4); }
.site-footer .footer-nav h4 { color: var(--cream); }
.site-footer .footer-bottom { color: rgba(246, 241, 233, 0.45); }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
}

.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-nav li + li { margin-top: 0.625rem; }

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--terracotta-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
}

.footer-credit { color: rgba(246, 241, 233, 0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .main-nav__list { gap: 0; }

  .main-nav__link {
    padding: 0.5rem 0.5625rem;
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
  }

  .main-nav__link:hover::after,
  .main-nav__link.is-active::after {
    width: calc(100% - 1.125rem);
    left: 0.5625rem;
  }

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

  .dest-card--stack-left {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .dest-card--stack-left .dest-card__link { flex-direction: row; }
  .dest-card--stack-left .dest-card__media { width: 42%; aspect-ratio: 4 / 3; }

  .destinations-grid .dest-card:nth-child(1),
  .destinations-grid .dest-card:nth-child(2),
  .destinations-grid .dest-card:nth-child(3),
  .destinations-grid .dest-card:nth-child(4),
  .destinations-grid .dest-card:nth-child(5),
  .destinations-grid .dest-card:nth-child(6),
  .dest-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .dest-card--wide {
    grid-column: 1 / -1;
  }

  .activities-track { grid-template-columns: repeat(2, 1fr); }

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

  .conseils-header { grid-column: 1 / -1; }
  .conseils-sidebar { grid-column: 1 / -1; position: static; flex-direction: row; }
  .tip-box, .checklist-box { flex: 1; }

  .lifestyle-feature { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }

  .menu-toggle { display: flex; }

  .header-actions .btn--primary { display: none; }

  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .eco-cards { grid-template-columns: 1fr; }

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

  .newsletter-box { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  .hero__stats { gap: 1.5rem; }
  .stat__num { font-size: 1.5rem; }

  .hero__scroll { display: none; }

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

  .activities-track { grid-template-columns: 1fr; }

  .conseils-layout { grid-template-columns: 1fr; }
  .conseils-sidebar { flex-direction: column; }

  .lifestyle-feature__grid { grid-template-columns: 1fr; }
  .lifestyle-card--large { grid-row: auto; }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .cursor-glow { display: none; }
}

/* --- Reduced motion --- */
/* Menu WP natif : états actifs alignés sur .is-active */
.main-nav__list .current-menu-item > a,
.main-nav__list .current-menu-ancestor > a {
  color: var(--terracotta);
}

.site-header:not(.is-scrolled) .main-nav__list .current-menu-item > a,
.site-header:not(.is-scrolled) .main-nav__list .current-menu-ancestor > a {
  color: var(--white);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
