/* ============================================================
   AMEERA LUXURY SPA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@200;300;400&display=swap');

/* ===================== VARIABLES ===================== */
:root {
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --dark:  #1c1c1c;
  --white: #ffffff;
  --nav-h: 72px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--dark); overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(28,28,28,0.08);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* Logo */
.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.nav.scrolled .nav__logo img,
.nav.dark .nav__logo img { filter: none; }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.nav__links > li > a {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: opacity 0.2s;
}
.nav__links > li > a:hover { opacity: 0.6; }
.nav.scrolled .nav__links > li > a,
.nav.dark .nav__links > li > a { color: var(--dark); }

/* Langue toggle FR | EN */
.nav__lang-item {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.25);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__lang-item { color: #fff; }
.nav.scrolled .nav__lang-item,
.nav.dark .nav__lang-item { border-left-color: rgba(28,28,28,0.2); color: var(--dark); }
.nav__lang-active { opacity: 0.45; cursor: default; }
.nav__lang-sep { opacity: 0.3; }
.nav__lang-link { opacity: 0.65; transition: opacity 0.2s; }
.nav__lang-link:hover { opacity: 1; }

/* Dropdown */
.has-drop { position: relative; }

.nav__drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 210px;
  padding: 16px 0 12px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.has-drop:hover .nav__drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__drop li a {
  display: block;
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.15s;
}
.nav__drop li a:hover { opacity: 1; }

/* Burger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.9);
  transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
}
.nav.scrolled .nav__burger span,
.nav.dark .nav__burger span { background: var(--dark); }
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 999;
}
.nav__overlay.visible { display: block; }

@media (max-width: 900px) {
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 36px 40px;
    gap: 0;
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 1001;
  }
  .nav__links.open { right: 0; }

  .nav__links > li {
    width: 100%;
    border-bottom: 1px solid rgba(28,28,28,0.08);
  }
  .nav__links > li > a {
    display: block;
    padding: 16px 0;
    color: var(--dark);
    font-size: 0.72rem;
  }

  .nav__drop {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 16px 12px;
    display: none;
  }
  .has-drop.open .nav__drop { display: block; }
  .nav__drop li a { padding: 8px 0; font-size: 0.7rem; }

  .nav__lang-item {
    border-left: none;
    border-top: 1px solid rgba(28,28,28,0.08);
    margin-left: 0;
    padding-left: 0;
    padding-top: 16px;
    margin-top: 8px;
    color: var(--dark);
  }
  .nav__lang-active,
  .nav__lang-link { color: var(--dark); }
}

/* ===================== HERO VIDEO ===================== */
.hero-video {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.8s ease;
}

@media (min-width: 769px) {
  .hero-video__poster {
    z-index: 0;
  }
  .hero-video video {
    z-index: 1;
  }
}

.hero-video__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}

.hero-video__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 0 24px;
}

.hero-video__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero-video__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-video__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
}

.hero-video__cta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 13px 32px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-video__cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.hero-video__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-video__scroll-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-video__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scroll-anim 1.8s ease infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== PAGE HERO (image) ===================== */
.page-hero {
  position: relative;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.page-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  text-align: center;
}
.page-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

/* ===================== INTRO TEXT ===================== */
.intro-text {
  padding: clamp(56px, 8vw, 96px) clamp(24px, 10vw, 200px);
  background: var(--white);
  text-align: center;
}
.intro-text__eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.45;
  margin-bottom: 20px;
}
.intro-text__body {
  max-width: 680px;
  margin: 0 auto;
}
.intro-text__body p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 14px;
}
.intro-text__body p:last-child { margin-bottom: 0; }

/* ===================== AMBIANCE BLOCK ===================== */
.ambiance-block {
  padding: clamp(64px, 10vw, 112px) clamp(24px, 12vw, 220px);
  background: #f7f4f0;
  text-align: center;
}
.ambiance-block__body {
  max-width: 700px;
  margin: 0 auto;
}
.ambiance-block__body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.85;
  color: var(--dark);
  opacity: 0.82;
  margin-bottom: 1.4em;
}
.ambiance-block__body p:last-child {
  margin-bottom: 0;
  font-style: italic;
  opacity: 0.55;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.04em;
}

/* ===================== EDITORIAL (60/40) ===================== */
.editorial {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 580px;
}
.editorial.img-right { flex-direction: row-reverse; }

.editorial__img {
  flex: 3;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.editorial__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.editorial:hover .editorial__img img { transform: scale(1.03); }

.editorial__text {
  flex: 2;
  background: var(--white);
  padding: clamp(56px, 8vw, 112px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.editorial__eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.45;
}
.editorial__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.editorial__body { display: flex; flex-direction: column; gap: 16px; }
.editorial__body p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.95;
  color: var(--dark);
  opacity: 0.75;
}

@media (max-width: 749px) {
  /* Editorial */
  .editorial,
  .editorial.img-right { flex-direction: column; }
  .editorial__img { min-height: 300px; }

  /* Rituels (homepage) */
  .rituels { padding: 64px 0 56px; }
  .rituels__inner { flex-direction: column; gap: 40px; }
  .rituels__intro { flex: none; width: 100%; padding-top: 0; }
  .rituels__cards { gap: 16px; }
  .rituel-card { flex: 0 0 180px; }
  .rituel-card__img { height: 260px; }

  /* Univers (homepage) */
  .univers { padding: 64px clamp(20px, 5vw, 40px); }
  .univers__title { margin-bottom: 40px; }
  .univers__grid { grid-template-columns: 1fr; gap: 48px; max-width: 480px; }

  /* Suites banner (homepage) */
  .suites-banner { flex-direction: column; }
  .suites-banner__img { min-height: 320px; flex: none; }
  .suites-banner__content { flex: none; padding: clamp(40px, 8vw, 72px) clamp(24px, 6vw, 48px); }
  .suites-banner__desc { max-width: 100%; }
}

/* ===================== HAMMAM MENU (tarifs) ===================== */
.hmenu {
  background: var(--white);
  padding: clamp(72px, 9vw, 112px) clamp(24px, 8vw, 160px);
}
.hmenu__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.hmenu__eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.45;
  margin-bottom: 16px;
}
.hmenu__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  letter-spacing: -0.01em;
}
.hmenu__list { max-width: 860px; margin: 0 auto; }
.hmenu__item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(28,28,28,0.1);
}
.hmenu__item:first-child { border-top: 1px solid rgba(28,28,28,0.1); }
.hmenu__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 12px;
}
.hmenu__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hmenu__duration {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  opacity: 0.45;
  margin-left: 8px;
  white-space: nowrap;
}
.hmenu__price {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  opacity: 0.7;
  white-space: nowrap;
}
.hmenu__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--dark);
  opacity: 0.6;
}
@media (max-width: 600px) {
  .hmenu__row { flex-wrap: wrap; gap: 8px; }
  .hmenu__price { width: 100%; }
}

/* ===================== RITUELS SECTION (homepage) ===================== */
.rituels {
  background: var(--white);
  padding: 96px 0 80px;
}
.rituels__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
  flex-wrap: wrap;
}
.rituels__intro { flex: 0 0 240px; padding-top: 4px; }
.rituels__eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin-bottom: 20px;
}
.rituels__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.rituels__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 28px;
}
.rituels__link {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
}
/* Swiper override pour les rituels */
.rituels__cards.swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 36px;
}
.rituels__cards .swiper-wrapper {
  align-items: flex-start;
}
.rituel-card {
  flex: 0 0 220px;
  width: 220px;
  display: block;
  text-decoration: none;
  color: inherit;
}
/* Pagination Swiper rituels */
.rituels-pagination {
  text-align: center;
  bottom: 0;
}
.rituels-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 1px;
  border-radius: 0;
  background: var(--dark);
  opacity: 0.2;
}
.rituels-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.rituel-card__img { height: 320px; overflow: hidden; }
.rituel-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.rituel-card:hover .rituel-card__img img { transform: scale(1.03); }
.rituel-card__cat {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin: 14px 0 6px;
}
.rituel-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.rituel-card__cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--dark);
  border-bottom: 1px solid rgba(28,28,28,0.4);
  display: inline;
  padding-bottom: 1px;
}

/* ===================== UNIVERS SECTION (homepage) ===================== */
.univers {
  background: var(--white);
  padding: 96px clamp(24px, 5vw, 72px);
}
.univers__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  color: var(--dark);
  margin-bottom: 64px;
}
.univers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.univers-card { display: block; text-decoration: none; color: inherit; }
.univers-card__img { overflow: hidden; aspect-ratio: 3/4; }
.univers-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.univers-card:hover .univers-card__img img { transform: scale(1.03); }
.univers-card__cat {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin: 20px 0 8px;
}
.univers-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.univers-card__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 14px;
}
.univers-card__cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--dark);
  border-bottom: 1px solid rgba(28,28,28,0.4);
  display: inline;
  padding-bottom: 1px;
}

/* ===================== SUITES BANNER (homepage) ===================== */
.suites-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 60vh;
}
.suites-banner__img {
  flex: 1 1 400px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.suites-banner__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suites-banner__content {
  flex: 1 1 400px;
  background: var(--white);
  padding: clamp(56px, 8vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}
.suites-banner__eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
}
.suites-banner__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--dark);
}
.suites-banner__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.75;
  max-width: 380px;
}
.suites-banner__cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  width: fit-content;
}

/* ===================== CARDS GRID (main pages) ===================== */
.cards-section {
  padding: 64px clamp(24px, 5vw, 72px) 80px;
  background: var(--white);
}
.cards-section__eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 48px;
  text-align: center;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link__img { overflow: hidden; aspect-ratio: 3/4; }
.card-link__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.card-link:hover .card-link__img img { transform: scale(1.03); }
.card-link__info { padding: 20px 0 8px; }
.card-link__cat {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 8px;
}
.card-link__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.card-link__discover {
  font-family: var(--sans);
  font-size: 0.68rem;
  border-bottom: 1px solid rgba(28,28,28,0.4);
  padding-bottom: 1px;
  display: inline;
}

/* ===================== CONTACT ===================== */
.contact-wrap {
  padding: clamp(72px, 9vw, 112px) clamp(24px, 8vw, 120px);
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.contact-info { flex: 1 1 280px; }
.contact-info h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 36px;
}
.contact-info p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 10px;
}
.contact-info a { border-bottom: 1px solid rgba(28,28,28,0.3); }
.contact-form { flex: 2 1 380px; }
.contact-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
  margin-top: 24px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(28,28,28,0.2);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--dark); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  margin-top: 40px;
  padding: 14px 44px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-form button:hover { opacity: 0.75; }
.contact-form button:disabled { opacity: 0.5; cursor: default; }
.form-feedback {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  min-height: 20px;
}
.form-feedback--ok { color: #2a7a4b; }
.form-feedback--err { color: #b94040; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #1c1c1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #2a2a2a;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
@media (max-width: 600px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(28,28,28,0.08);
  padding: 48px clamp(24px, 5vw, 72px) 36px;
  text-align: center;
}
.footer__logo img {
  height: 52px;
  width: auto;
  margin: 0 auto 28px;
}
.footer__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer__info-item {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.footer__info-item:hover { opacity: 1; }
.footer__info-sep {
  color: var(--dark);
  opacity: 0.25;
}
.footer__hours {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.38;
  margin: 14px 0 24px;
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 28px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.4;
  transition: opacity 0.2s;
}
.footer__socials a svg { flex-shrink: 0; }
.footer__socials a:hover { opacity: 0.8; }
.footer__copy {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.25;
}

/* ===================== COMPOSANTS ===================== */

/* Intro centrée */
.aman-intro {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 12vw, 280px);
  text-align: center;
  background: var(--white);
}
.aman-intro__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.aman-intro__text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--dark);
  opacity: 0.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Sous-navigation */
.aman-subnav {
  border-top: 1px solid rgba(28,28,28,0.1);
  border-bottom: 1px solid rgba(28,28,28,0.1);
  padding: 0 clamp(24px, 5vw, 72px);
  background: var(--white);
  overflow-x: auto;
  scrollbar-width: none;
}
.aman-subnav::-webkit-scrollbar { display: none; }
.aman-subnav__list {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.aman-subnav__list li { flex: 0 0 auto; }
.aman-subnav__list a {
  display: block;
  padding: 20px 28px;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  transition: opacity 0.2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.aman-subnav__list a:hover {
  opacity: 1;
  border-bottom-color: var(--dark);
}

/* Feature block (65/35) */
.aman-feature {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  background: var(--white);
}
.aman-feature.reversed { flex-direction: row-reverse; }
.aman-feature__img {
  flex: 0 0 62%;
  position: relative;
  overflow: hidden;
}
.aman-feature__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aman-feature:hover .aman-feature__img img { transform: scale(1.03); }
.aman-feature__body {
  flex: 1;
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.aman-feature__cat {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.45;
}
.aman-feature__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.aman-feature__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--dark);
  opacity: 0.65;
  max-width: 340px;
}
.aman-feature__sep {
  width: 100%;
  height: 1px;
  background: rgba(28,28,28,0.12);
  margin: 8px 0;
}
.aman-feature__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* Lien texte souligné */
.aman-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--dark);
  opacity: 0.7;
  border-bottom: 1px solid rgba(28,28,28,0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.aman-link:hover { opacity: 1; border-color: var(--dark); }

/* Grille 2 colonnes */
.aman-grid-section {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 72px);
  background: var(--white);
}
.aman-grid-section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  text-align: center;
  color: var(--dark);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.aman-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}
.aman-card { display: block; text-decoration: none; color: inherit; }
.aman-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
}
.aman-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.aman-card:hover .aman-card__img img { transform: scale(1.04); }
.aman-card__cat {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.45;
  margin-bottom: 10px;
}
.aman-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.aman-card__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--dark);
  opacity: 0.6;
  margin-bottom: 18px;
}
.aman-card__links { display: flex; gap: 20px; }

@media (max-width: 640px) {
  .aman-grid { grid-template-columns: 1fr; }
  .aman-feature { flex-direction: column; }
  .aman-feature__img { flex: none; min-height: 280px; }
}

@media (max-width: 480px) {
  /* Hero vidéo mobile */
  .hero-video { height: 95vh; }
  .hero-video__title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-video__sub { font-size: 0.85rem; }
  .hero-video__cta { padding: 12px 24px; font-size: 0.65rem; }

  /* Rituels cards encore plus petites */
  .rituel-card { flex: 0 0 160px; }
  .rituel-card__img { height: 220px; }

  /* Univers grid plein écran */
  .univers { padding: 56px 20px; }
  .univers-card__img { aspect-ratio: 4/3; }
}

/* ===================== SCROLL ANIMATIONS ===================== */
.no-js .fade-up {
  opacity: 1;
  transform: none;
}


.editorial__img,
.page-hero img,
.univers-card__img img,
.rituel-card__img img,
.suites-banner__img img {
  will-change: transform;
}
.nav { will-change: background, box-shadow; }


/* ===================== UTILITY ===================== */
.pt-nav { padding-top: var(--nav-h); }
