/* ═══════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════ */
:root {
  /* Palette La Parenthèse */
  --ivoire:       #FAF3E0;
  --champagne:    #E6D7C3;
  --vert:         #3B5249;
  --taupe:        #4C453D;
  --or:           #d3b65c;
  --argent:       #CFC7BD;
  --noir:         #1C1C1C;
  --blanc:        #ffffff;

  /* Typographies */
  --font-titre:   'Marcellus', Georgia, serif;
  --font-corps:   'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:  'Source Sans 3', 'Helvetica Neue', sans-serif;

  /* Espacements */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 7rem;

  /* Bordures */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Transitions */
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-corps);
  color: var(--noir);
  background: var(--ivoire);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHIE
═══════════════════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--font-titre);
  font-weight: 400;
  line-height: 1.2;
}

.section-eyebrow {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--gap-xs);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--taupe);
  margin-bottom: var(--gap-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--taupe);
  opacity: 0.8;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-header--light .section-title,
.section-header--light .section-subtitle,
.section-header--light .section-eyebrow {
  color: var(--ivoire);
}

.section-header--light .section-eyebrow {
  color: var(--or);
}

/* ═══════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  padding: 0.85rem 2rem;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.btn--gold {
  background: var(--or);
  color: var(--noir);
}
.btn--gold:hover {
  background: #c4a44a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,182,92,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blanc);
}

.btn--dark {
  background: var(--taupe);
  color: var(--ivoire);
}
.btn--dark:hover {
  background: var(--noir);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.3s, color 0.3s, backdrop-filter var(--transition);
}

.nav.scrolled {
  background: #FAF3E0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav--static {
  background: #FAF3E0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav__logo {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--blanc);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav.scrolled .nav__logo,
.nav--static .nav__logo {
  color: #1C1C1C;
}

.nav__logo-parens {
  color: var(--or);
  font-family: var(--font-accent);
  font-size: 1.6rem;
  vertical-align: -4px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a,
.nav--static .nav__links a {
  color: #1C1C1C;
}

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

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: background var(--transition);
  border-radius: 2px;
}

.nav.scrolled .nav__burger span,
.nav--static .nav__burger span {
  background: #1C1C1C;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--ivoire);
  z-index: 99;
  padding: var(--gap-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.nav__mobile.open {
  transform: translateY(0);
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.nav__mobile a {
  font-size: 1.1rem;
  color: var(--taupe);
  font-family: var(--font-titre);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
}

.hero__img--main {
  opacity: 1;
  z-index: 1;
}

.hero__img--secondary {
  opacity: 0;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,28,0.25) 0%,
    rgba(28,28,28,0.5) 50%,
    rgba(28,28,28,0.7) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--blanc);
  padding: var(--gap-md);
  animation: fadeInUp 1.2s ease both;
}

.hero__pretitle {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--gap-sm);
}

.hero__title {
  font-family: var(--font-accent);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--gap-xs);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero__tagline {
  font-family: var(--font-titre);
  font-size: clamp(1rem, 2vw, 1.4rem);
  opacity: 0.9;
  letter-spacing: 0.05em;
  margin-bottom: var(--gap-md);
}

.hero__ctas {
  display: flex;
  gap: var(--gap-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ═══════════════════════════════════════════════════
   ACCROCHE
═══════════════════════════════════════════════════ */
.accroche {
  background: var(--vert);
  padding: var(--gap-lg) 0;
  text-align: center;
}

.accroche__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ivoire);
  margin-bottom: var(--gap-md);
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.accroche__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-sm);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ivoire);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.badge__icon {
  color: var(--or);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════
   EXPÉRIENCE
═══════════════════════════════════════════════════ */
.experience {
  padding: var(--gap-xl) 0;
  background: var(--ivoire);
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.experience__card {
  background: var(--blanc);
  border: 1px solid var(--champagne);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.experience__card:hover {
  box-shadow: 0 8px 32px rgba(76,69,61,0.1);
  transform: translateY(-4px);
}

.experience__icon {
  display: block;
  color: var(--or);
  margin-bottom: var(--gap-sm);
}

.experience__card h3 {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  color: var(--taupe);
  margin-bottom: 0.6rem;
}

.experience__card p {
  font-size: 0.95rem;
  color: var(--taupe);
  opacity: 0.75;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════════ */
.galerie {
  padding: var(--gap-xl) 0;
  background: var(--champagne);
  overflow: hidden;
}

/* Strip horizontal — 2 lignes en grille */
.galerie__scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  padding: var(--gap-md) 0;
  /* Masquer la scrollbar visuellement */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.galerie__scroll-wrapper::-webkit-scrollbar { display: none; }
.galerie__scroll-wrapper.grabbing { cursor: grabbing; }

.galerie__strip {
  display: grid;
  grid-template-rows: 220px 220px;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 6px;
  padding: 0 var(--gap-md);
  width: max-content;
}

.galerie__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.galerie__item:hover img {
  transform: scale(1.05);
}

.galerie__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.galerie__item:hover .galerie__overlay {
  opacity: 1;
}

.galerie__overlay span {
  color: var(--blanc);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-corps);
}

/* Bouton footer galerie */
.galerie__footer {
  text-align: center;
  margin-top: var(--gap-md);
  padding: 0 var(--gap-md);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  user-select: none;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanc);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 1001;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanc);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 1001;
  line-height: 1;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-family: var(--font-corps);
}

/* Responsive galerie */
@media (max-width: 768px) {
  .galerie__strip {
    grid-template-rows: 160px 160px;
    grid-auto-columns: 240px;
  }
  .lightbox__prev { left: 0.5rem; font-size: 2rem; }
  .lightbox__next { right: 0.5rem; font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════
   ÉQUIPEMENTS
═══════════════════════════════════════════════════ */
.equipements {
  padding: var(--gap-xl) 0;
  background: var(--ivoire);
}

.equipements__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}

.equipements__category {
  background: var(--blanc);
  border: 1px solid var(--champagne);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
}

.equipements__cat-title {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--vert);
  margin-bottom: var(--gap-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.equipements__icon {
  color: var(--or);
}

.equipements__category ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.equipements__category li {
  font-size: 0.95rem;
  color: var(--taupe);
  padding-left: 1.2rem;
  position: relative;
}

.equipements__category li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
  font-size: 0.7rem;
  top: 3px;
}

/* Options */
.options {
  text-align: center;
  padding: var(--gap-lg) 0 0;
  border-top: 1px solid var(--champagne);
}

.options__title {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  color: var(--taupe);
  margin-bottom: var(--gap-md);
}

.options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-sm);
}

.option-card {
  background: var(--blanc);
  border: 1px solid var(--champagne);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.option-card:hover {
  box-shadow: 0 8px 32px rgba(76,69,61,0.1);
  transform: translateY(-4px);
}

.option-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--gap-xs);
}

.option-card h4 {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}

.option-card p {
  font-size: 0.9rem;
  color: var(--taupe);
  opacity: 0.75;
}

.options__note {
  font-size: 0.85rem;
  color: var(--taupe);
  opacity: 0.6;
  font-style: italic;
}

.options__subtitle {
  font-size: 1rem;
  color: var(--taupe);
  opacity: 0.7;
  margin-bottom: var(--gap-md);
  line-height: 1.6;
}

.options__cta {
  text-align: center;
  margin-top: var(--gap-md);
}

/* ── Section Extras (fond taupe) sur index ── */
.section-extras-home {
  background: #EDE0C4;
  padding: var(--gap-xl) 0;
  text-align: center;
}

.section-extras-home .section-eyebrow {
  color: #4C453D;
}

.section-extras-home__title {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #1C1C1C;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.section-extras-home__subtitle {
  font-size: 1rem;
  color: #1C1C1C;
  margin-bottom: var(--gap-lg);
  line-height: 1.6;
}

.option-card--dark {
  background: #FAF3E0;
  border-color: rgba(211, 182, 92, 0.3);
}

.option-card--dark h4 {
  color: #1C1C1C;
}

.option-card--dark p {
  color: #4C453D;
}

.option-card--dark:hover {
  background: #FAF3E0;
  box-shadow: 0 8px 32px rgba(76, 69, 61, 0.12);
}

/* ═══════════════════════════════════════════════════
   RÉSERVATION
═══════════════════════════════════════════════════ */
.reservation {
  position: relative;
  padding: var(--gap-xl) 0;
  overflow: hidden;
}

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

.reservation__bg img {
  filter: saturate(0.7);
}

.reservation__overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,82,73,0.85);
}

.reservation .container {
  position: relative;
  z-index: 1;
}

.reservation__widget {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  max-width: 800px;
  margin: 0 auto var(--gap-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.reservation__placeholder {
  text-align: center;
  padding: var(--gap-md);
  color: var(--taupe);
}

.reservation__placeholder p {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  margin-bottom: var(--gap-xs);
}

.reservation__placeholder-sub {
  font-size: 0.85rem !important;
  opacity: 0.6;
  font-family: var(--font-corps) !important;
  margin-bottom: var(--gap-md) !important;
}

.reservation__infos {
  display: flex;
  justify-content: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
}

.resa-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--ivoire);
}

.resa-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}

.resa-info__value {
  font-family: var(--font-titre);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════
   LOCALISATION
═══════════════════════════════════════════════════ */
.localisation {
  padding: var(--gap-xl) 0;
  background: var(--champagne);
}

.localisation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.localisation__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.localisation__infos {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.localisation__item {
  display: flex;
  gap: var(--gap-sm);
  align-items: flex-start;
}

.localisation__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.localisation__item strong {
  display: block;
  font-family: var(--font-titre);
  font-size: 1rem;
  color: var(--taupe);
  margin-bottom: 0.2rem;
}

.localisation__item p {
  font-size: 0.9rem;
  color: var(--taupe);
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════
   EXTRAS HOME
═══════════════════════════════════════════════════ */
.extras-home {
  background: var(--ivoire);
  padding: var(--gap-xl) 0;
}

.extras-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}

.extras-home__card {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  background: var(--blanc);
  border: 1px solid var(--champagne);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.extras-home__card:hover {
  box-shadow: 0 8px 32px rgba(76,69,61,0.10);
}

.extras-home__img-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
}

.extras-home__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.extras-home__content {
  padding: 1.5rem 1.5rem 1.5rem 0;
  flex: 1;
}

.extras-home__content h3 {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  color: var(--taupe);
  margin-bottom: 0.6rem;
}

.extras-home__content p {
  font-size: 0.88rem;
  color: var(--taupe);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.extras-home__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--or);
  font-family: var(--font-titre);
}

.extras-home__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .extras-home__grid {
    grid-template-columns: 1fr;
  }
  .extras-home__card {
    flex-direction: column;
    align-items: stretch;
  }
  .extras-home__img-wrap {
    width: 100%;
    height: 200px;
  }
  .extras-home__content {
    padding: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--noir);
  color: var(--champagne);
  padding: var(--gap-lg) 0 var(--gap-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  margin-bottom: var(--gap-xs);
  color: var(--ivoire);
}

.footer__logo span {
  color: var(--or);
  font-family: var(--font-accent);
  font-size: 2rem;
  vertical-align: -4px;
}

.footer__tagline {
  font-style: italic;
  opacity: 0.5;
  font-size: 0.9rem;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-titre);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--gap-sm);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a,
.footer__contact a {
  color: var(--champagne);
  opacity: 0.65;
  font-size: 0.9rem;
  transition: opacity var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  opacity: 1;
  color: var(--or);
}

.footer__contact p {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer__socials {
  display: flex;
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: inherit;
  transition: border-color 0.2s, color 0.2s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.4;
  flex-wrap: wrap;
  gap: var(--gap-xs);
}

.footer__bottom a:hover {
  opacity: 1;
  color: var(--or);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════════════
   AVIS CLIENTS
═══════════════════════════════════════════════════ */
.avis {
  padding: var(--gap-xl) 0;
  background: var(--ivoire);
  overflow: hidden;
}

.avis__global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--gap-md);
  flex-wrap: wrap;
}

.avis__global-note {
  font-family: var(--font-titre);
  font-size: 3rem;
  color: var(--taupe);
  line-height: 1;
}

.avis__global-stars {
  color: var(--or);
  font-size: 1.4rem;
  letter-spacing: 3px;
}

.avis__global-label {
  font-size: 0.82rem;
  color: var(--taupe);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.avis__scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  padding: var(--gap-md) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.avis__scroll-wrapper::-webkit-scrollbar { display: none; }
.avis__scroll-wrapper.grabbing { cursor: grabbing; }

.avis__track {
  display: flex;
  gap: var(--gap-sm);
  padding: 0 var(--gap-md);
  width: max-content;
}

.avis__card {
  width: 320px;
  background: var(--blanc);
  border: 1px solid var(--champagne);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.avis__card:hover {
  box-shadow: 0 8px 32px rgba(76,69,61,0.08);
  transform: translateY(-2px);
}

.avis__card-stars {
  color: var(--or);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.avis__card-text {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.avis__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid var(--champagne);
}

.avis__card-author {
  font-family: var(--font-titre);
  font-size: 0.95rem;
  color: var(--taupe);
}

.avis__card-date {
  font-size: 0.78rem;
  color: var(--taupe);
  opacity: 0.5;
}

.avis__footer {
  text-align: center;
  margin-top: var(--gap-md);
  padding: 0 var(--gap-md);
}