/* =================================================================
   VOYAGE EN LIBERTÉ — Feuille de style refondue
   Univers : temples & marchés de Thaïlande
   Display : Fraunces  ·  Texte : Outfit
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500;1,9..144,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette ancrée dans l'univers thaï */
  --ivoire: #F5F0E6;
  /* fond chaud, papier de riz */
  --ivoire-2: #EDE6D6;
  /* surfaces alternées */
  --jade: #0F3D35;
  /* vert temple profond */
  --jade-2: #16574B;
  /* jade plus clair pour hover */
  --teck: #C8731E;
  /* ambre / bois de teck */
  --laque: #A6271E;
  /* rouge laque */
  --or: #C9A227;
  /* dorure discrète */
  --gold-accent: #F3E5AB;
  /* doré clair pour accents sur fond sombre */
  --encre: #1A1410;
  /* texte principal */
  --encre-doux: #5b5145;
  /* texte secondaire */

  --bg: var(--ivoire);
  --card-bg: #FBF8F1;
  --border: rgba(26, 20, 16, 0.12);
  --border-soft: rgba(26, 20, 16, 0.07);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -22px rgba(26, 20, 16, 0.45);
  --shadow-soft: 0 8px 24px -16px rgba(26, 20, 16, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--encre);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* texture subtile de papier */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(200, 115, 30, 0.05), transparent 32%),
    radial-gradient(circle at 85% 88%, rgba(15, 61, 53, 0.05), transparent 38%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--teck);
  color: var(--ivoire);
}

/* ================== HERO ================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(24px, 7vw, 110px);
  color: var(--ivoire);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 3s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(70deg, rgba(15, 61, 53, 0.8) 0%, rgba(15, 61, 53, 0.3) 40%, rgba(15, 61, 53, 0) 66%, rgba(26, 20, 16, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: heroRise 1s var(--ease) both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivoire);
  padding: 9px 18px;
  border: 1px solid rgba(245, 240, 230, 0.32);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  margin-bottom: 28px;
}

.hero-eyebrow-mark {
  color: var(--or);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 8.5vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  text-wrap: balance;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--teck);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

.hero-text {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: white;
  max-width: 30ch;
  margin-bottom: 38px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teck);
  color: var(--ivoire);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero-cta:hover {
  transform: translateY(-3px);
  background: var(--laque);
  box-shadow: 0 16px 36px -14px rgba(166, 39, 30, 0.7);
}

.hero-cta-arrow {
  transition: transform 0.35s var(--ease);
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateY(4px);
}

/* .hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  right: clamp(24px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
}

.hero-scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(245, 240, 230, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
*/

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ================== NAVIGATION ================== */
.nav-container {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav-inner {
  position: relative;
}

.nav-container.is-stuck {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 6px 24px -18px rgba(26, 20, 16, 0.5);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--jade);
  white-space: nowrap;
}

.nav-brand span {
  color: var(--teck);
  font-style: italic;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  position: relative;
  display: block;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--encre-doux);
  padding: 10px 16px;
  border-radius: 100px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  background: var(--teck);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}

.nav-link:hover {
  color: var(--jade);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid var(--teck);
  outline-offset: 2px;
}

/* Hamburger — caché en desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.nav-toggle:hover {
  background: rgba(26, 20, 16, 0.04);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--jade);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivoire);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px -22px rgba(26, 20, 16, 0.5);
    padding: 8px 16px 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.4s var(--ease);
  }

  .nav-list.is-open {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
  }

  .nav-list li:last-child .nav-link {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: var(--teck);
  }
}

/* ================== RÉASSURANCE ================== */
.reassurance {
  background: var(--ivoire-2);
  border-bottom: 1px solid var(--border-soft);
}

.reassurance-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px) 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

@media (min-width: 760px) {
  .reassurance-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.reassure-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.reassure-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teck);
  background: rgba(200, 115, 30, 0.1);
  border-radius: 12px;
}

.reassure-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--jade);
  margin-bottom: 4px;
}

.reassure-item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--encre-doux);
  line-height: 1.5;
}


/* ================== SECTION TITLE ================== */
.section-title {
  text-align: center;
  max-width: 720px;
  margin: clamp(70px, 11vw, 130px) auto clamp(36px, 5vw, 56px);
  padding: 0 24px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teck);
  margin-bottom: 16px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--jade);
  margin-bottom: 14px;
}

.section-title p {
  color: var(--encre-doux);
  font-size: 1.12rem;
  font-weight: 300;
}

/* ================== GRILLE RÉGULIÈRE ================== */
.voyages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 30px);
  max-width: var(--maxw);
  margin: 0 auto clamp(80px, 12vw, 130px);
  padding: 0 24px;
}

@media (min-width: 620px) {
  .voyages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .voyages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voyage-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.voyage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 115, 30, 0.4);
  box-shadow: var(--shadow);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
  background: var(--jade);
}

.card-img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.97);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}

.voyage-card:hover .card-img-wrapper img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03) brightness(1);
}

.card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 61, 53, 0) 52%, rgba(15, 61, 53, 0.5) 100%);
  opacity: 0.85;
  transition: opacity 0.5s var(--ease);
}

.voyage-card:hover .card-img-wrapper::after {
  opacity: 0.55;
}

.card-index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ivoire);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.card-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--encre);
  background: rgba(245, 240, 230, 0.92);
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(2px);
}

.card-content {
  padding: clamp(22px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--jade);
  margin-bottom: 14px;
  /* hauteur de titre régulière sur 2 lignes pour aligner les cartes */
  min-height: 2.4em;
}

.card-desc {
  color: var(--encre-doux);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 22px;
  flex-grow: 1;
}

.btn-discover {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--teck);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-discover::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.btn-discover:hover {
  color: var(--laque);
  border-bottom-color: var(--laque);
}

.btn-discover:hover::after {
  transform: translateX(6px);
}

/* Révélation au scroll (décalage léger entre cartes) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================== CHIFFRES ================== */
.stats {
  background: var(--jade);
  color: var(--ivoire);
  position: relative;
  overflow: hidden;
}

.stats::before,
.stats::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.18;
  pointer-events: none;
}

.stats::before {
  background: var(--teck);
  top: -160px;
  left: -80px;
}

.stats::after {
  background: var(--or);
  bottom: -180px;
  right: -60px;
}

.stats-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 78px) 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 20px;
}

@media (min-width: 760px) {
  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  color: var(--ivoire);
  margin-bottom: 10px;
}

.stat:nth-child(1) .stat-num {
  color: var(--gold-accent, #F3E5AB);
}

.stat-label {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.72);
}

/* ================== GOOGLE AVIS ================== */
.reviews {
  background: var(--ivoire);
  padding: clamp(60px, 9vw, 100px) 24px;
}

.reviews-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.reviews-head {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(34px, 5vw, 52px);
}

.reviews-google {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.g-blue {
  color: #4285F4;
}

.g-red {
  color: #EA4335;
}

.g-yellow {
  color: #FBBC05;
}

.g-green {
  color: #34A853;
}

.reviews-label {
  color: var(--encre-doux);
  font-weight: 400;
  margin-left: 8px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviews-score {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--jade);
  line-height: 1;
}

.reviews-stars {
  color: #FBBC05;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.reviews-text {
  color: var(--encre-doux);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  max-width: 44ch;
  margin: 0 auto 26px;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--jade);
  color: var(--ivoire);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.reviews-cta span {
  transition: transform 0.3s var(--ease);
}

.reviews-cta:hover {
  background: var(--jade-2);
  transform: translateY(-3px);
}

.reviews-cta:hover span {
  transform: translateX(5px);
}

/* ================== CTA FINAL ================== */
.final-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 61, 53, 0.94), rgba(26, 20, 16, 0.86)),
    /*  url("https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?q=80&w=2070&auto=format&fit=crop") */ url("index-1.jpg") center/cover fixed;
  color: var(--ivoire);
  text-align: center;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(70px, 11vw, 120px) 24px;
}

.final-cta .section-kicker {
  color: var(--gold-accent, #F3E5AB);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--teck);
}

.final-cta p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245, 240, 230, 0.88);
  max-width: 46ch;
  margin: 0 auto 34px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--teck);
  color: var(--ivoire);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.btn-primary:hover {
  background: var(--laque);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--ivoire);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border: 1px solid rgba(245, 240, 230, 0.4);
  border-radius: 100px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-ghost:hover {
  background: rgba(245, 240, 230, 0.1);
  border-color: rgba(245, 240, 230, 0.7);
}

/* ================== FOOTER ================== */
.footer {
  background: var(--jade);
  color: rgba(245, 240, 230, 0.85);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teck), var(--or), var(--laque));
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 24px clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 880px) {
  .footer-inner {
    grid-template-columns: minmax(260px, 1.1fr) 2fr;
    gap: 64px;
  }
}

/* — Bloc marque — */
.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--ivoire);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--teck);
  font-style: italic;
}

.footer-tagline {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.68);
  max-width: 34ch;
  margin-bottom: 24px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivoire);
  padding: 11px 18px;
  border: 1px solid rgba(245, 240, 230, 0.2);
  border-radius: 100px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-contact-btn:hover {
  background: rgba(245, 240, 230, 0.07);
  border-color: rgba(245, 240, 230, 0.5);
  transform: translateY(-2px);
}

.footer-contact-icon {
  color: var(--teck);
  font-size: 1rem;
}

/* — Colonnes liens — */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 880px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 44px;
  }
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ivoire);
  font-size: 1.12rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--teck);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(245, 240, 230, 0.7);
  margin-bottom: 12px;
  font-size: 0.93rem;
  font-weight: 300;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-link::before {
  content: "›";
  color: var(--teck);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-link:hover {
  color: var(--ivoire);
  transform: translateX(4px);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* — Tuile renseignements — */
.footer-feature {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-soft);
}

.footer-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.footer-feature:hover img {
  transform: scale(1.07);
}

.footer-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(15, 61, 53, 0) 35%, rgba(15, 61, 53, 0.55) 75%, rgba(10, 10, 10, 0.78) 100%);
}

.footer-feature-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ivoire);
  line-height: 1.25;
}

.footer-feature-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teck);
  color: var(--ivoire);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.footer-feature:hover .footer-feature-arrow {
  transform: translateX(4px);
  background: var(--laque);
}

/* — Barre basse — */
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.14);
}

.footer-bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

@media (min-width: 680px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-inner p {
  color: rgba(245, 240, 230, 0.55);
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-share-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.5);
  margin-right: 4px;
}

.footer-share-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--ivoire);
  background: rgba(245, 240, 230, 0.08);
  border: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: 50%;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-share-btn:hover {
  background: var(--teck);
  border-color: var(--teck);
  transform: translateY(-3px);
}

/* ================== RETOUR HAUT ================== */
#scroll_to_top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jade);
  color: var(--ivoire);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
}

#scroll_to_top.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#scroll_to_top:hover {
  background: var(--teck);
}

.scroll-top-arrow {
  font-size: 1.3rem;
  line-height: 1;
}

/* ================== UTILITAIRES ================== */
.text-highlight {
  color: var(--jade);
  font-weight: 600;
  box-shadow: inset 0 -0.42em 0 rgba(200, 115, 30, 0.22);
  transition: box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}

.text-highlight:hover {
  color: var(--laque);
  box-shadow: inset 0 -0.42em 0 rgba(200, 115, 30, 0.4);
}

.card-desc strong {
  color: var(--encre);
  font-weight: 600;
}

a:focus-visible {
  outline: 2px solid var(--teck);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ================== MOUVEMENT RÉDUIT ================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}