/* BELLE CONCIERGERIE - HERO */

/* ══════════════════════════════════════════════════════════════════════════ */
/* CSS CUSTOM PROPERTIES (VARIABLES)                                          */
/* ══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Couleurs principales */
  --color-primary: #182e41;
  --color-primary-hover: #1e3a50;
  --color-primary-dark: #0c1a26;

  /* Couleurs de fond */
  --color-bg-light: #f7f5f1;
  --color-bg-cream: #e9e3d8;

  /* Couleurs de texte */
  --color-text-dark: #0c0c0c;
  --color-text-light: #f7f5f1;
  --color-text-white: #ffffff;

  /* Couleurs d'accent */
  --color-border: #d4d1c9;
  --color-border-light: #bfbfba;
  --color-overlay: rgba(24, 46, 65, 0.3);
  --color-overlay-dark: rgba(0, 0, 0, 0.4);
  --color-overlay-darker: rgba(0, 0, 0, 0.6);

  /* Couleurs transparentes */
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-border-30: rgba(212, 209, 201, 0.3);

  /* Transitions */
  --transition-default: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slower: 1s cubic-bezier(0.25, 0.1, 0.25, 1);

  /* Border radius */
  --radius-pill: 80px;
  --radius-medium: 24px;
  --radius-small: 16px;
}

/* FONTS - WOFF2 optimisé (70% plus léger que TTF) */
@font-face {
  font-family: 'Bressay Display';
  src: url('assets/fonts/BressayDisplay_Trial_Rg.woff2') format('woff2'),
       url('assets/fonts/BressayDisplay_Trial_Rg.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/AvenirNextCyr-Light.woff2') format('woff2'),
       url('assets/fonts/AvenirNextCyr-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/AvenirNextCyr-Regular.woff2') format('woff2'),
       url('assets/fonts/AvenirNextCyr-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* ACCESSIBILITY                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Skip link - visible uniquement au focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Focus visible pour accessibilité clavier */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Remove default focus pour éviter double outline */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Focus spécifique pour les boutons et liens */
.btn:focus-visible,
.btn-outline:focus-visible,
.btn-primary:focus-visible,
.btn-services:focus-visible,
.btn-benefits:focus-visible,
.property-book:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(24, 46, 65, 0.15);
}

/* Focus sur fond sombre */
.header-phone:focus-visible,
.header-login:focus-visible,
.header-lang-switch:focus-visible,
.mobile-menu-link:focus-visible,
.footer-list a:focus-visible,
.footer-contact a:focus-visible {
  outline: 2px solid var(--color-text-light);
  outline-offset: 2px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Avenir', sans-serif;
  font-weight: 300;
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
img, video { display: block; }

/* ══════════════════════════════════════════════════════════════════════════ */
/* HERO - 724px height, search bar déborde en bas                             */
/* ══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 724px;
  margin-bottom: 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 724px;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* HEADER                                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 56px;
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header scrolled - Style luxe Chanel/Dior */
.header.is-scrolled {
  background: #FAF9F7;
  box-shadow: 0 1px 0 rgba(24, 46, 65, 0.06);
  padding: 16px 56px;
}

/* Éléments du header passent en bleu au scroll */
.header.is-scrolled .menu-btn span {
  background: var(--color-primary);
}

.header.is-scrolled .header-right {
  color: var(--color-primary);
}

.header.is-scrolled .header-sep {
  background: rgba(24, 46, 65, 0.15);
}

/* Logo passe en bleu au scroll */
.header.is-scrolled .logo img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(1000%) hue-rotate(170deg) brightness(95%);
}

/* Header caché (scroll vers le bas) */
.header.is-hidden {
  transform: translateY(-100%);
}

/* Animation subtile d'entrée au chargement */
.header.is-loaded {
  animation: headerFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.header-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-text-light);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
  display: flex;
  align-items: center;
  margin-top: -4px;
}

.logo img {
  height: 30px;
  width: auto;
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--color-text-light);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-phone {
  font-size: 16px;
  font-weight: 500;
}

.header-sep {
  width: 1px;
  height: 24px;
  background: var(--color-white-40);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.header-login {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
}

.header-login svg {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* HERO CONTENT - centré                                                       */
/* ══════════════════════════════════════════════════════════════════════════ */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.hero-titles {
  margin-bottom: 16px;
}

.hero-welcome {
  font-family: 'Bressay Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-bg-cream);
  margin-bottom: 4px;
}

.hero-welcome .lc {
  text-transform: lowercase;
}

.hero-title {
  font-family: 'Bressay Display', Georgia, serif;
  font-size: 104px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-bg-cream);
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 478px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-light);
}

/* BUTTON Hero (1:502) - "Discover our properties"
   Background: #f7f5f1
   Border: 1px solid transparent (pour éviter le mouvement au hover)
   Padding: 11px 24px 10px
   Gap: 8px
   Border-radius: 80px
   Font: Avenir Roman, 16px, line-height 1.3
   Color: #182e41
   Icon: 14x14px
   Hover: bg #182e41, color #f7f5f1, svg rotate 45deg */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px 10px;
  background: var(--color-bg-light);
  color: var(--color-primary);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-default), color var(--transition-default);
  cursor: pointer;
}

.btn:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-default);
}

.btn:hover svg {
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SEARCH BAR - positionnée à 673px du top                                     */
/* ══════════════════════════════════════════════════════════════════════════ */
.search {
  position: absolute;
  top: 673px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: 1000px;
  padding: 0 24px;
}

.search-outer {
  background: var(--color-bg-light);
  padding: 16px;
  border-radius: var(--radius-pill);
}

.search-inner {
  display: flex;
  align-items: center;
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 24px;
}

.search-field {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.search-field-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-icon {
  width: 16px;
  height: 16px;
}

.search-label {
  font-size: 16px;
  color: var(--color-text-dark);
}

.search-arrow {
  width: 12px;
  height: 12px;
  margin-left: 88px;
}

.search-sep {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  margin: 0 40px;
}

.search-btn {
  margin-left: auto;
  padding: 16px 24px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-pill);
  font-size: 16px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* ANIMATIONS HERO - Luxe Majestueux                                           */
/* Fluide, élégant, harmonisé avec le reste de la page                         */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Header : descente douce depuis le haut */
@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Titre : révélation verticale majestueuse */
@keyframes titleReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate(-50%, -50%);
  }
}

/* Search : montée fluide avec scale subtil */
@keyframes searchAscend {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Timing luxe : durées longues, easing coulant, délais espacés */
.header {
  animation: headerDrop 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.hero-content {
  animation: titleReveal 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s both;
}

.search {
  animation: searchAscend 1.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s both;
}

/* Hover effects */
.menu-btn span {
  transition: transform 0.3s ease;
}

.menu-btn:hover span:first-child {
  transform: translateY(2px);
}

.menu-btn:hover span:last-child {
  transform: translateY(-2px);
}

.header-phone:hover,
.header-login:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* Sélecteur de langue - Animation Luxe avec masque et glissement */
.header-lang-switch {
  position: relative;
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-decoration: none;
  display: inline-flex;
  overflow: hidden;
  height: 1.2em;
}

.header-lang-switch .lang-current,
.header-lang-switch .lang-hover {
  display: block;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.header-lang-switch .lang-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(110%);
}

.header-lang-switch:hover .lang-current {
  transform: translateY(-110%);
}

.header-lang-switch:hover .lang-hover {
  transform: translateY(0);
}

/* Version scrolled - texte bleu */
.header.is-scrolled .header-lang-switch {
  color: var(--color-primary);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* MOBILE MENU OVERLAY                                                         */
/* Basé sur le design Figma node 1:862                                         */
/* ══════════════════════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 420px;
  background: var(--color-bg-light);
  border-right: 1px solid rgba(24, 46, 65, 0.08);
  z-index: 1001;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* Bouton de fermeture - positionné à 24px du bord droit, 23px du haut */
.mobile-menu-close {
  position: absolute;
  top: 23px;
  right: 25px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

/* Navigation - positionnée plus bas */
.mobile-menu-nav {
  position: absolute;
  top: 130px;
  left: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Logo aligné avec la navigation - même taille que navbar */
.mobile-menu-logo {
  position: absolute;
  top: 35px;
  left: 40px;
}

.mobile-menu-logo img {
  width: 120px;
  height: auto;
  max-height: 40px;
}

/* Liens du menu - Police plus grosse (20px) */
.mobile-menu-link {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, letter-spacing 0.35s linear;
  width: fit-content;
  position: relative;
}

/* Animation luxueuse - Double ligne qui se rejoint au centre */
.mobile-menu-link::before,
.mobile-menu-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.35s linear;
}

.mobile-menu-link::before {
  left: 0;
  width: 0;
}

.mobile-menu-link::after {
  right: 0;
  width: 0;
}

.mobile-menu-link:hover::before {
  width: 50%;
}

.mobile-menu-link:hover::after {
  width: 50%;
}

.mobile-menu-link:hover {
  letter-spacing: 1.5px;
}

/* Animation des liens au moment de l'ouverture */
.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(7) { transition-delay: 0.4s; }

/* Sélecteur de langue mobile - Animation Luxe avec masque et glissement */
.mobile-lang-switch {
  position: relative;
  font-family: 'Avenir', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  overflow: hidden;
  height: 1.2em;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open .mobile-lang-switch {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}

.mobile-lang-switch .lang-current,
.mobile-lang-switch .lang-hover {
  display: block;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-lang-switch .lang-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(110%);
}

.mobile-lang-switch:hover .lang-current {
  transform: translateY(-110%);
}

.mobile-lang-switch:hover .lang-hover {
  transform: translateY(0);
}

/* Footer du menu mobile - Section contact */
.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E9E3D8;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.is-open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.mobile-menu-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-contact-label {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-primary);
}

.mobile-menu-contact-value {
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-primary);
}

.mobile-menu-contact-value a {
  color: var(--color-primary);
  text-decoration: none;
}

.mobile-menu-contact-value a:hover {
  text-decoration: underline;
}

.mobile-menu-contact-hours {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(24, 46, 65, 0.6);
}

.mobile-menu-contact-link {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-primary);
  text-decoration: none;
}

.mobile-menu-contact-link:hover {
  text-decoration: underline;
}

/* Overlay de fond sombre */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* MENU MOBILE - Style harmonisé avec sticky navbar                           */
/* ══════════════════════════════════════════════════════════════════════════ */
.mobile-menu.is-scrolled-style {
  background: #FAF9F7;
}

.mobile-menu.is-scrolled-style .mobile-menu-footer {
  background: #F0EBE3;
}

/* Animation du bouton burger quand le menu est ouvert */
.menu-btn.is-active span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-btn.is-active span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.search-field {
  transition: opacity 0.3s;
}

.search-field:hover {
  opacity: 0.7;
}

.search-arrow {
  transition: transform 0.3s;
}

.search-field:hover .search-arrow {
  transform: rotate(180deg);
}

.search-btn {
  transition: background var(--transition-default);
}

.search-btn:hover {
  background: var(--color-primary-hover);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 2 - INTRO                                                           */
/* Figma node: 1:628 - "Section 1"                                             */
/* Dimensions: 1440 x 310px                                                    */
/* ══════════════════════════════════════════════════════════════════════════ */
.intro {
  position: relative;
  width: 100%;
  height: 310px;
  background: var(--color-bg-light);
  overflow: visible;
}

/* Background décoratif (1:635)
   ≤1512px: 100% responsive, >1512px: 1440px fixe */
.intro-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -150px;
  width: 100%;
  height: 593px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

@media (min-width: 1513px) {
  .intro-bg {
    width: 1440px;
  }
}

/* Animation de tracé des lignes décoratives - contrôlée par CSS */
@keyframes revealFromRight {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes revealFromLeft {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* État initial : lignes masquées */
.intro-bg .line1,
.benefits-bg .line1 {
  clip-path: inset(0 0 0 100%);
}

.intro-bg .line2,
.benefits-bg .line2 {
  clip-path: inset(0 100% 0 0);
}

/* Animation quand revealed */
.intro-bg.revealed .line1,
.benefits-bg.revealed .line1 {
  animation: revealFromRight 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.intro-bg.revealed .line2,
.benefits-bg.revealed .line2 {
  animation: revealFromLeft 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.intro-bg-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Container 1440px centré */
.intro-container {
  position: relative;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

/* Titres gauche (1:629)
   Position: absolute, left 56px, top 0
   Width: 877px
   Font: Bressay Display Regular
   Color: #182e41
   Line-height: 1.2
   Text-transform: capitalize */
/* Animation fade-in pour les éléments de la section intro */
@keyframes introFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-titles {
  position: absolute;
  left: 56px;
  top: 0;
  width: 60%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 1.4s cubic-bezier(0.25, 0.1, 0.25, 1), clip-path 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.intro-titles.revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* "Exceptional" (1:630) - 40px, width 642px */
.intro-small {
  font-family: 'Bressay Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: capitalize;
  width: 642px;
  margin: 0;
}

/* "Property Management" (1:631) - 64px, full width */
.intro-large {
  font-family: 'Bressay Display', Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: capitalize;
  width: 100%;
  margin: 0;
}

/* Bloc droite (1:632)
   Position: absolute, left 957px, top 156px
   Width: 427px
   Display: flex column
   Gap: 24px
   Align-items: flex-start */
.intro-right {
  position: absolute;
  right: 56px;
  top: 156px;
  width: 427px;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.3s;
}

.intro-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Texte (1:633)
   Font: Avenir Book, 16px
   Line-height: 1.4
   Color: #0c0c0c */
.intro-text {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin: 0;
  width: 100%;
}

/* Bouton Section 2 (1:634) - "Learn more"
   Default:
   - Background: #f7f5f1
   - Border: 1px solid #182e41
   - Padding: 11px 24px 10px
   - Border-radius: 80px
   - Gap: 8px
   - Font: Avenir Roman, 16px, line-height 1.3
   - Color: #182e41
   - Icon: 14x14px
   
   Hover (1:23):
   - Background: #182e41
   - Border: 1px solid #182e41 (même couleur que bg)
   - Color: #f7f5f1 */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px 10px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-default), color var(--transition-default), border-color var(--transition-default);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
}

/* Icon 14x14px avec rotation au hover */
.btn-outline svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-default);
}

.btn-outline:hover svg {
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                                  */
/* ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .header {
    padding: 24px 32px;
  }
  
  .header-phone,
  .header-sep:first-of-type {
    display: none;
  }
  
  .hero-title {
    font-size: 80px;
  }
  
  .search-arrow {
    margin-left: 40px;
  }
  
  .search-sep {
    margin: 0 20px;
  }
  
  /* Intro responsive */
  .intro {
    height: auto;
    min-height: 310px;
    padding: 40px 0;
  }
  
  .intro-container {
    position: relative;
    height: auto;
    padding: 0 40px;
  }
  
  .intro-titles {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 600px;
  }
  
  .intro-small {
    font-size: 32px;
    width: auto;
  }
  
  .intro-large {
    font-size: 52px;
  }
  
  .intro-right {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 450px;
    margin-top: 40px;
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .header-lang-switch,
  .header-sep {
    display: none;
  }
  
  .hero-title {
    font-size: 56px;
    white-space: normal;
  }
  
  .hero-welcome {
    font-size: 32px;
  }
  
  .search-outer {
    border-radius: 24px;
  }
  
  .search-inner {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 16px;
    padding: 16px;
  }
  
  .search-field {
    flex: 1 1 45%;
  }
  
  .search-arrow {
    margin-left: auto;
  }
  
  .search-sep {
    display: none;
  }
  
  .search-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Intro responsive */
  .intro-container {
    padding: 0 24px;
  }
  
  .intro-small {
    font-size: 28px;
  }
  
  .intro-large {
    font-size: 40px;
  }
  
  .intro-right {
    max-width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }
  
  .intro-bg {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 3 - PROPERTIES                                                      */
/* Figma node: 1:638 - "Frame 111"                                             */
/* Dimensions: 1440 x 932px                                                    */
/* ══════════════════════════════════════════════════════════════════════════ */
.properties {
  width: 100%;
  background: var(--color-bg-light);
  padding: 96px 0;
}

.properties-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Titre - Bressay Display 40px, center, capitalize */
.properties-title {
  font-family: 'Bressay Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}

/* Cards Container - gap 24px */
.properties-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1328px;
}

/* Card - 427 x 570px */
.property-card {
  position: relative;
  width: 427px;
  height: 570px;
  flex-shrink: 0;
  background: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  /* Animation Luxe - montée fluide avec scale subtil */
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Délais en cascade - espacés pour fluidité */
.property-card:nth-child(1) { transition-delay: 0s; }
.property-card:nth-child(2) { transition-delay: 0.15s; }
.property-card:nth-child(3) { transition-delay: 0.3s; }

/* État révélé */
.property-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Card Image Container - height 448px, transitions to 364px on hover */
.property-img {
  position: relative;
  height: 448px;
  min-height: 364px;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.property-card:hover .property-img {
  height: 364px;
}

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

/* Gradient overlay */
.property-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0), var(--color-overlay-dark));
  pointer-events: none;
}

/* Badge "Exclusive" - design ultra premium */
.property-badge {
  position: absolute;
  left: 16px;
  top: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  font-family: 'Avenir', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-text-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Navigation arrows - hidden by default, visible on hover */
.property-nav {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.property-card:hover .property-nav {
  opacity: 1;
  pointer-events: auto;
}

.property-nav-btn {
  width: 20px;
  height: 40px;
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0;
}

.property-nav-btn svg {
  width: 100%;
  height: 100%;
}

/* Card Content */
.property-content {
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

/* Property Name - Bressay Display 24px */
.property-name {
  font-family: 'Bressay Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
}

/* Property Details - hidden by default, visible on hover */
.property-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), 
              opacity 0.35s ease;
}

.property-card:hover .property-details {
  max-height: 150px;
  opacity: 1;
}

/* Property Specs - "3 rooms • 180m²" */
.property-specs {
  display: flex;
  align-items: center;
  gap: 16px;
}

.property-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-dark);
}

.property-spec svg {
  width: 24px;
  height: 24px;
}

.property-dot {
  width: 4px;
  height: 4px;
  background: var(--color-text-dark);
  border-radius: 50%;
}

/* Property Tags */
.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.property-tag {
  padding: 4px 14px;
  background: var(--color-bg-cream);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-dark);
}

/* Property Bottom - Fixed at bottom */
.property-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-light);
  padding-bottom: 24px;
}

/* Property Line - 1px separator */
.property-line {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-bottom: 16px;
}

/* Property Footer - price + book button */
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-price {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-dark);
}

/* Book Now Button - Style like Section 2 button */
.property-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 7px;
  background: var(--color-bg-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--transition-default), color var(--transition-default);
}

.property-book:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.property-book svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-default);
}

.property-book:hover svg {
  transform: rotate(45deg);
}

/* Primary Button - "Discover all properties" */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px 10px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-light);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-default), color var(--transition-default);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-default);
}

.btn-primary:hover svg {
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 3 - RESPONSIVE                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  .properties-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .property-card {
    width: calc(50% - 12px);
    max-width: 427px;
  }
}

@media (max-width: 900px) {
  .properties {
    padding: 64px 0;
  }
  
  .properties-container {
    padding: 0 24px;
    gap: 32px;
  }
  
  .properties-title {
    font-size: 32px;
  }
  
  .properties-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .property-card {
    width: 100%;
    max-width: 427px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 4 - NOS SERVICES - Frame 66 - 1328x706px                           */
/* Position: x=55, y=2081                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */

.services {
  background: var(--color-bg-light);
  padding-bottom: 96px; /* Gap vers section 5 */
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
}

/* Services Header - Frame 62 - 1328x48px */
.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.services-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: capitalize;
}

/* Services Button - 148x42px - Same style as property-book */
.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px 10px;
  background: var(--color-bg-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--transition-default), color var(--transition-default);
}

.btn-services:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.btn-services svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-default);
}

.btn-services:hover svg {
  transform: rotate(45deg);
}

/* Services Grid - Frame 65 - 1328x618px */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

/* Services Row */
.services-row {
  display: flex;
  gap: 24px;
}

/* Service Card Base */
.service-card {
  position: relative;
  overflow: hidden;
  height: 297px;
  cursor: pointer;

  /* Animation Luxe - expansion douce depuis le centre */
  opacity: 0;
  clip-path: inset(30% 15% 30% 15%);
  transform: scale(0.95);
  transition:
    opacity 1.1s cubic-bezier(0.25, 0.1, 0.25, 1),
    clip-path 1.1s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1.1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* État révélé */
.service-card.revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* Délais en cascade pour Row 1 */
.services-row:first-child .service-card:nth-child(1) { transition-delay: 0s; }
.services-row:first-child .service-card:nth-child(2) { transition-delay: 0.12s; }

/* Délais en cascade pour Row 2 */
.services-row:last-child .service-card:nth-child(1) { transition-delay: 0.06s; }
.services-row:last-child .service-card:nth-child(2) { transition-delay: 0.18s; }
.services-row:last-child .service-card:nth-child(3) { transition-delay: 0.3s; }

/* Grande carte - 652x297px */
.service-card-large {
  width: 652px;
}

/* Petite carte - 427x297px */
.service-card-small {
  width: 427px;
}

/* Service Background */
.service-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Gradient Overlay */
.service-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, var(--color-overlay-dark) 100%);
  transition: background var(--transition-smooth);
}

/* Hover: overlay plus sombre */
.service-card:hover .service-gradient {
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), 
              linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

/* Service Content - Default: top=198px, Hover: top=138px */
.service-content {
  position: absolute;
  top: 198px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: top 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Hover: content remonte */
.service-card:hover .service-content {
  top: 138px;
}

/* Content width */
.service-card-large .service-content {
  width: 421px;
}

.service-card-small .service-content {
  width: 379px;
}

/* Hover: content width augmente */
.service-card-large:hover .service-content {
  width: 604px;
}

.service-card-small:hover .service-content {
  width: 379px;
}

/* Service Title - Bressay Display 24px */
.service-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-light);
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Service Tag */
.service-tag {
  padding: 4px 6px;
  background: var(--color-border-30);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-light);
  white-space: nowrap;
}

/* Service Description - Hidden by default, appears on hover */
.service-desc {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-white);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--transition-smooth), max-height var(--transition-smooth);
}

.service-card:hover .service-desc {
  opacity: 1;
  max-height: 100px;
}

/* Service Card Hover - Image zoom */
.service-card:hover .service-bg img {
  transform: scale(1.05);
}

/* Services Responsive */
@media (max-width: 1400px) {
  .services-container {
    padding: 0 24px;
  }
  
  .service-card-large {
    width: calc(50% - 12px);
  }
  
  .service-card-small {
    width: calc(33.333% - 16px);
  }
  
  .service-card-large .service-content,
  .service-card-small .service-content,
  .service-card-large:hover .service-content,
  .service-card-small:hover .service-content {
    width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    height: auto;
  }
  
  .services-title {
    font-size: 32px;
  }
  
  .services-row {
    flex-wrap: wrap;
  }
  
  .service-card-large,
  .service-card-small {
    width: 100%;
    height: 280px;
  }
  
  .service-content {
    top: auto;
    bottom: 24px;
  }
  
  .service-card:hover .service-content {
    top: auto;
    bottom: 24px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 5 - AVANTAGES PROPRIÉTAIRES - Frame 117 - 1332x591px               */
/* Position: x=55, y=2883                                                      */
/* ══════════════════════════════════════════════════════════════════════════ */

.benefits {
  background: var(--color-bg-light);
  position: relative;
  overflow: visible;
}

.benefits-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  height: 591px;
  overflow: visible;
}

/* Bloc beige - x=0, y=0, 991x488px */
.benefits-box {
  position: relative;
  width: 991px;
  height: 488px;
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  z-index: 2;

  /* Animation Luxe - glissement latéral majestueux */
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.3s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.6s;
}

.benefits-box.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Header - décalé à gauche, plus large pour titre sur une ligne */
.benefits-header {
  position: absolute;
  top: 88px;
  left: 60px;
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Titre - Bressay 40px, sur une ligne */
.benefits-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: capitalize;
  text-align: left;
  white-space: nowrap;
  margin: 0;
}

/* Sous-titre - Avenir 16px, aligné gauche */
.benefits-subtitle {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: left;
  width: 455px;
  margin: 0;
}

/* Liste - équilibrée entre header et bas du bloc */
.benefits-list {
  position: absolute;
  top: 236px;
  left: 60px;
  width: 269px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Features - gap 16px */
.benefits-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item - flex, gap 8px, height 22px */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icône - 16x16px */
.benefit-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Texte item - Avenir 16px */
.benefit-item span {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
}

/* Bouton - bg #182e41, 222x42px */
.btn-benefits {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px 10px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--transition-default), color var(--transition-default);
  width: fit-content;
}

.btn-benefits:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.btn-benefits svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-default);
}

.btn-benefits:hover svg {
  transform: rotate(45deg);
}

/* Image - alignée avec le bord droit de la section 4 (padding 56px) */
.benefits-image {
  position: absolute;
  top: 64px;
  right: 56px;
  width: 544px;
  height: 527px;
  overflow: hidden;
  z-index: 2;

  /* Animation Luxe - révélation majestueuse avec scale */
  opacity: 0;
  transform: translateX(50px) scale(0.97);
  transition: opacity 1.3s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.8s;
}

.benefits-image.revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG BG - même positionnement que section 2
   ≤1512px: 100% responsive, >1512px: 1440px fixe */
.benefits-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 200px;
  width: 100%;
  height: 593px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

@media (min-width: 1513px) {
  .benefits-bg {
    width: 1440px;
  }
}

.benefits-bg-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Benefits Responsive */
@media (max-width: 1400px) {
  .benefits-container {
    padding: 0 24px;
    height: auto;
    min-height: 550px;
  }
  
  .benefits-box {
    width: 60%;
    min-width: 500px;
    height: auto;
    min-height: 420px;
  }
  
  .benefits-header {
    top: 60px;
    left: 60px;
    width: calc(100% - 120px);
  }
  
  .benefits-title {
    font-size: 36px;
    text-align: left;
  }
  
  .benefits-list {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 180px 0 60px 60px;
  }
  
  .benefits-image {
    left: auto;
    right: 24px;
    width: 38%;
    max-width: 480px;
    height: 460px;
  }
}

@media (max-width: 900px) {
  .benefits-container {
    height: auto;
    padding-bottom: 40px;
  }
  
  .benefits-box {
    width: 100%;
    min-width: auto;
    min-height: auto;
    padding: 40px;
    padding-bottom: 40px;
  }
  
  .benefits-header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  
  .benefits-title {
    font-size: 32px;
    text-align: left;
  }
  
  .benefits-list {
    position: relative;
    margin: 32px 0 0 0;
    width: 100%;
  }
  
  .benefits-image {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    height: 350px;
    margin-top: 40px;
  }
  
  .benefits-bg {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 6 - DESTINATIONS                                                    */
/* Figma node: 1:515 - "Frame 79"                                              */
/* Dimensions: 1440 x 614px                                                    */
/* Espacement avec section 5: 96px                                             */
/* ══════════════════════════════════════════════════════════════════════════ */
.destinations {
  width: 100%;
  background: var(--color-bg-light);
  padding-top: 96px;
  overflow: hidden;
}

.destinations-container {
  width: 100%;
  margin: 0;
}

@media (min-width: 1513px) {
  .destinations-container {
    max-width: 1440px;
    margin: 0 auto;
  }
}

/* Titre - Bressay Display 40px, centré, height=48px */
.destinations-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  height: 48px;
}

/* Grid - 4 images côte à côte, margin-top=56px (104-48) */
.destinations-grid {
  display: flex;
  margin-top: 56px;
  width: 100%;
}

/* Carte destination - 25% par défaut, s'étend au hover */
.destination-card {
  position: relative;
  flex: 1 1 25%;
  height: 510px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: flex 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Quand on hover le grid, les cartes non-hover se rétrécissent */
.destinations-grid:hover .destination-card {
  flex: 1 1 0;
  min-width: 15%;
}

/* La carte hover s'agrandit */
.destinations-grid .destination-card:hover {
  flex: 0 0 45%;
}

/* Container image - s'étire avec la carte */
.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image s'étire avec la carte (pas de zoom) */
.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: none;
}

/* Overlay noir - rgba(0,0,0,0.6) par défaut */
.destination-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-darker);
  transition: background var(--transition-slower);
}

/* Au hover: overlay devient gradient */
.destination-card:hover .destination-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Contenu (nom + description) */
.destination-content {
  position: absolute;
  left: 24px;
  bottom: 48px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

/* Nom de la destination */
.destination-name {
  font-family: 'Bressay Display Trial', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-white);
  text-transform: capitalize;
}

/* Description - cachée par défaut, apparaît au hover */
.destination-description {
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-white);
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-slow) 0.25s,
              transform var(--transition-slow) 0.25s;
}

/* Au hover: description apparaît */
.destination-card:hover .destination-description {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ANIMATIONS SECTION 6 DESTINATIONS - Luxe Majestueux                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Animation titre */
.destinations-title {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.destinations-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Animation grid destinations - fade simple sur le conteneur */
.destinations-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.3s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.destinations-grid.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Destinations Responsive */
@media (max-width: 1200px) {
  .destinations {
    padding-top: 60px;
  }
  
  .destinations-grid {
    flex-wrap: wrap;
  }
  
  .destination-card {
    flex: 0 0 50%;
    height: 400px;
  }
  
  .destinations-grid:hover .destination-card {
    flex: 0 0 50%;
  }
  
  .destinations-grid .destination-card:hover {
    flex: 0 0 50%;
  }
  
  .destination-image {
    width: 100%;
  }
  
  .destination-content {
    width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .destinations {
    padding-top: 40px;
  }
  
  .destinations-title {
    font-size: 32px;
    padding: 0 24px;
  }
  
  .destinations-grid {
    margin-top: 40px;
  }
  
  .destination-card {
    flex: 0 0 100%;
    height: 350px;
  }
  
  .destinations-grid:hover .destination-card {
    flex: 0 0 100%;
  }
  
  .destinations-grid .destination-card:hover {
    flex: 0 0 100%;
  }
  
  .destination-image {
    width: 100%;
  }
  
  .destination-name {
    font-size: 32px;
  }
  
  .destination-description {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 7 - PARTENAIRES                                                     */
/* Figma node: 1:518 - "Frame 81"                                              */
/* Dimensions: 1440 x 277px                                                    */
/* Espacement avec section 6: 96px                                             */
/* ══════════════════════════════════════════════════════════════════════════ */
.partners {
  width: 100%;
  background: var(--color-bg-light);
  padding: 56px 0;
  margin-top: 96px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partners-container {
  max-width: 1440px;
  margin: 0 auto;
}

/* Titre - Bressay Display 24px, centré */
.partners-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

.partners-title span {
  text-transform: lowercase;
}

/* Animation titre - Luxe */
.partners-title {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.partners-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Container logos - margin-top calculé: 141-56-29=56px */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 56px;
  padding: 0 60px;
}

/* Logo individuel - Animation Luxe fade simple */
.partner-logo {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* État révélé */
.partner-logo.revealed {
  opacity: 0.6;
  transform: translateY(0);
}

/* Délais en cascade depuis le centre - timing luxe */
.partner-logo:nth-child(3).revealed,
.partner-logo:nth-child(4).revealed { transition-delay: 0s; }
.partner-logo:nth-child(2).revealed,
.partner-logo:nth-child(5).revealed { transition-delay: 0.12s; }
.partner-logo:nth-child(1).revealed,
.partner-logo:nth-child(6).revealed { transition-delay: 0.24s; }

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Filtre pour convertir en noir */
  filter: brightness(0);
}

/* Ajustements individuels pour harmonie visuelle */
.partner-logo.logo-expedia img {
  filter: none;
}

.partner-logo.logo-vrbo {
  width: 100px;
  height: 50px;
}

.partner-logo.logo-trivago {
  width: 120px;
  height: 50px;
}

.partner-logo.logo-tripadvisor {
  width: 200px;
  height: 50px;
}

.partner-logo svg {
  width: 100%;
  height: 100%;
}

/* Partners Responsive */
@media (max-width: 1200px) {
  .partners-grid {
    flex-wrap: wrap;
    gap: 32px 40px;
    padding: 0 40px;
  }
  
  .partner-logo {
    width: 140px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .partners {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  
  .partners-title {
    font-size: 20px;
    padding: 0 24px;
  }
  
  .partners-grid {
    margin-top: 40px;
    gap: 24px 16px;
    padding: 0 24px;
  }
  
  .partner-logo {
    width: 100px;
    height: 35px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 8 - NEWS / ACTUALITÉS                                               */
/* Figma node: 1:533 - "Frame 89"                                              */
/* Dimensions: 1328 x 618px                                                    */
/* Espacement avec section 7: 96px                                             */
/* ══════════════════════════════════════════════════════════════════════════ */
.news {
  width: 100%;
  background: var(--color-bg-light);
  padding: 96px 56px 0 56px;
}

.news-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Titre - Bressay 40px */
.news-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: capitalize;
}

.news-title span {
  text-transform: lowercase;
}

/* Grid principale - 2 colonnes */
.news-grid {
  display: flex;
  gap: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ARTICLE FEATURED (GAUCHE) - 652x530px                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */
.news-featured {
  position: relative;
  width: 652px;
  height: 530px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.news-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.news-featured-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Tag catégorie */
.news-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  background: var(--color-bg-light);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-pill);
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-dark);
  text-align: center;
}

.news-tag-light {
  background: var(--color-border-30);
  color: var(--color-text-light);
}

.news-featured-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-light);
  text-transform: capitalize;
}

.news-featured-excerpt {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-light);
  max-width: 562px;
}

/* Bouton Learn more */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

/* Underline progressif au hover sur le span uniquement */
.btn-text span {
  position: relative;
}

.btn-text span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-smooth);
}

.btn-text:hover span::after {
  width: 100%;
}

.btn-text svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-smooth);
}

.btn-text:hover svg {
  transform: rotate(90deg);
}

.btn-text-light {
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ARTICLES SECONDAIRES (DROITE) - 652x530px total                             */
/* ═══════════════════════════════════════════════════════════════════════════ */
.news-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 652px;
  flex-shrink: 0;
}

/* Card article - 652x253px */
.news-card {
  position: relative;
  width: 100%;
  height: 253px;
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
}

.news-card-image {
  width: 230px;
  height: 252px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.news-card-content {
  position: absolute;
  left: 253px;
  top: 50%;
  transform: translateY(-50%);
  width: 374px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card-content .news-tag {
  margin-bottom: -8px;
}

.news-card-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: capitalize;
}

.news-card-excerpt {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-dark);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ANIMATIONS SECTION 8 - Précision Horlogère                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Animation titre - Luxe */
.news-title {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Animation d'entrée - Featured article Luxe */
.news-featured {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.2s;
}

.news-featured.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Animation image featured - zoom inversé doux */
.news-featured.revealed .news-featured-image img {
  animation: newsImageReveal 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes newsImageReveal {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Animation d'entrée - Cards secondaires Luxe */
.news-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1.1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.news-card:nth-child(1) {
  transition-delay: 0.25s;
}

.news-card:nth-child(2) {
  transition-delay: 0.4s;
}

/* Hover effect sur featured */
.news-featured-image img {
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-featured:hover .news-featured-image img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE SECTION 8                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  .news-grid {
    flex-direction: column;
  }
  
  .news-featured,
  .news-secondary {
    width: 100%;
  }
  
  .news-featured {
    height: 450px;
  }
  
  .news-card-content {
    left: 240px;
    width: calc(100% - 270px);
  }
}

@media (max-width: 768px) {
  .news {
    padding: 60px 24px 0 24px;
  }
  
  .news-title {
    font-size: 28px;
  }
  
  .news-featured {
    height: 400px;
  }
  
  .news-featured-title {
    font-size: 20px;
  }
  
  .news-featured-excerpt {
    font-size: 14px;
    max-width: 100%;
  }
  
  .news-card {
    flex-direction: column;
    height: auto;
  }
  
  .news-card-image {
    width: 100%;
    height: 180px;
  }
  
  .news-card-content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    padding: 20px;
  }
  
  .news-card-title {
    font-size: 20px;
  }
  
  .news-card-excerpt {
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 9 - INSTAGRAM                                                       */
/* Figma node: 1:569 - "Frame 94"                                              */
/* Dimensions: 1328 x 396px                                                    */
/* 4 colonnes de 314px, gap 24px                                               */
/* ══════════════════════════════════════════════════════════════════════════ */
.instagram {
  width: 100%;
  background: var(--color-bg-light);
  padding: 96px 56px;
}

.instagram-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.instagram-grid {
  display: flex;
  gap: 24px;
}

/* Colonne CTA */
.instagram-cta {
  width: 314px;
  height: 396px;
  flex-shrink: 0;
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Animation Luxe - montée douce */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.instagram-cta.revealed {
  opacity: 1;
  transform: translateY(0);
}

.instagram-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px;
  text-align: center;
}

.instagram-logo {
  width: 43px;
  height: 56px;
  object-fit: contain;
}

.instagram-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: capitalize;
}

.instagram-title span {
  text-transform: lowercase;
}

.instagram-cta .btn-outline:hover svg {
  transform: rotate(90deg);
}

/* Images Instagram */
.instagram-item {
  width: 314px;
  height: 396px;
  flex-shrink: 0;
  overflow: hidden;

  /* Animation Luxe - montée fluide avec scale */
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 1.1s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1.1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Délais en cascade - espacés */
.instagram-item:nth-child(2) { transition-delay: 0.1s; }
.instagram-item:nth-child(3) { transition-delay: 0.2s; }
.instagram-item:nth-child(4) { transition-delay: 0.3s; }

.instagram-item.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animation image interne - zoom inversé doux */
.instagram-item.revealed img {
  animation: instaImageReveal 1.3s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes instaImageReveal {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-item:hover img {
  transform: scale(1.05);
}

/* Responsive Section 9 */
@media (max-width: 1400px) {
  .instagram-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .instagram-cta,
  .instagram-item {
    width: calc(50% - 12px);
    height: 350px;
  }
}

@media (max-width: 768px) {
  .instagram {
    padding: 60px 24px;
  }
  
  .instagram-cta,
  .instagram-item {
    width: 100%;
    height: 300px;
  }
  
  .instagram-title {
    font-size: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* SECTION 10 - FOOTER                                                         */
/* Figma node: 1:578 - "Frame 95"                                              */
/* Dimensions: 1440 x 537px                                                    */
/* Background: #182e41, Padding: 56px                                          */
/* ══════════════════════════════════════════════════════════════════════════ */
.footer {
  width: 100%;
  background: var(--color-primary);
  padding: 56px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Colonne Brand & Newsletter */
.footer-brand {
  width: 342px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  width: 194px;
  height: 55px;
  object-fit: contain;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-newsletter-title {
  font-family: 'Avenir Next', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-white);
  white-space: nowrap;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--color-text-white);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 12px;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Avenir Next', sans-serif;
  font-size: 16px;
  color: var(--color-primary);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(24, 46, 65, 0.4);
}

.newsletter-btn {
  padding: 8px 12px;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-white);
  cursor: pointer;
  transition: background var(--transition-default);
}

.newsletter-btn:hover {
  background: var(--color-primary-dark);
}

/* Colonnes de liens */
.footer-links {
  display: flex;
  justify-content: space-between;
  width: 827px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 168px;
}

.footer-column-title {
  font-family: 'Bressay Display Trial', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-white);
  text-transform: capitalize;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-list a {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-light);
  text-decoration: none;
  transition: opacity var(--transition-default);
}

.footer-list a:hover {
  opacity: 0.7;
}

/* Contact avec icônes */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-contact a {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-light);
  text-decoration: none;
  transition: opacity var(--transition-default);
}

.footer-contact a:hover {
  opacity: 0.7;
}

/* Ligne de séparation */
.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border-30);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-bg-cream);
}

.footer-legal {
  display: flex;
  gap: 26px;
}

.footer-legal a {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-bg-cream);
  text-decoration: none;
  transition: opacity var(--transition-default);
}

.footer-legal a:hover {
  opacity: 0.7;
}

/* Responsive Section 10 */
@media (max-width: 1200px) {
  .footer-main {
    flex-direction: column;
    gap: 48px;
  }
  
  .footer-brand {
    width: 100%;
    max-width: 400px;
  }
  
  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-column {
    width: calc(33.333% - 27px);
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 24px;
  }
  
  .footer-newsletter-title {
    font-size: 20px;
  }
  
  .footer-column-title {
    font-size: 20px;
  }
  
  .footer-column {
    width: calc(50% - 20px);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-copyright {
    font-size: 14px;
  }
  
  .footer-legal {
    gap: 16px;
  }
  
  .footer-legal a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-column {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }
  
  .newsletter-input {
    width: 100%;
    padding: 8px;
    text-align: center;
  }
  
  .newsletter-btn {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════════ */
/* ACCESSIBILITÉ - RÉDUCTION DES MOUVEMENTS                                   */
/* ══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .property-card,
  .service-card,
  .intro-titles,
  .intro-right,
  .benefits-box,
  .benefits-image,
  .partners-title,
  .partner-logo,
  .news-title,
  .news-featured,
  .news-card,
  .instagram-cta,
  .instagram-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .intro-bg .line1,
  .intro-bg .line2,
  .benefits-bg .line1,
  .benefits-bg .line2 {
    clip-path: none !important;
  }
}
