/* ==========================================================================
   MAISON H — style.css
   ========================================================================== */

:root {
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-gold: #C4A35A;
  --color-rose: #C9857A;
  --color-rose-light: #F5EDE8;
  --color-rose-dark: #b06f64;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Montserrat', Arial, Helvetica, sans-serif;

  --container-w: 1140px;
  --nav-h: 84px;

  --ease: cubic-bezier(.25,.7,.35,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  animation: page-fade-in .25s ease-in;
}
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--color-black);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--color-gold); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--color-black); }
p { margin: 0 0 1.1em; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--rose { background: var(--color-rose-light); }
.section--dark { background: var(--color-black); color: var(--color-white); }
.section--dark h2 { color: var(--color-gold); }
.section-intro { max-width: 720px; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  margin-bottom: .9em;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--color-gold);
  border: none;
  margin: 1.4em 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid var(--color-rose);
  background: var(--color-rose);
  color: var(--color-white);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  min-height: 44px;
}
.btn:hover, .btn:focus-visible {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn--outline:hover { background: var(--color-black); color: var(--color-white); }
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--color-white);
}
.btn--ghost-light:hover { background: var(--color-white); color: var(--color-black); border-color: var(--color-white); }

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
  height: 72px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--color-black);
}
.site-header:not(.is-scrolled):not(.is-solid) .brand { color: var(--color-white); }
.brand img { height: 62px; width: auto; transition: height .35s var(--ease); }
.site-header.is-scrolled .brand img,
.site-header.is-solid .brand img { height: 50px; }
.brand .logo-dark { display: none; }
.site-header.is-scrolled .brand .logo-light,
.site-header.is-solid .brand .logo-light { display: none; }
.site-header.is-scrolled .brand .logo-dark,
.site-header.is-solid .brand .logo-dark { display: block; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-text small {
  font-family: var(--font-ui);
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
}

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-black);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.site-header:not(.is-scrolled):not(.is-solid) .main-nav a { color: var(--color-white); }
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: var(--color-rose); color: var(--color-rose); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  position: relative;
  z-index: 600;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--color-black);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.site-header:not(.is-scrolled):not(.is-solid) .nav-toggle span,
.site-header:not(.is-scrolled):not(.is-solid) .nav-toggle span::before,
.site-header:not(.is-scrolled):not(.is-solid) .nav-toggle span::after { background: var(--color-white); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); background: var(--color-black); }
.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); background: var(--color-black); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
  }
  .nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s;
  }
  .main-nav ul { flex-direction: column; align-items: center; gap: 28px; }
  .main-nav a { color: var(--color-black) !important; font-size: 1.1rem; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(26,26,26,.35) 45%, rgba(26,26,26,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  margin-top: var(--nav-h);
}
@media (max-width: 700px) {
  .hero-content { padding-bottom: 56px; }
}
.hero-content .eyebrow { color: #F3C9BE; text-shadow: 0 2px 10px rgba(0,0,0,.55); opacity: 0; animation: fade-up .8s var(--ease) .15s forwards; }
.hero h1 {
  color: var(--color-white);
  opacity: 0;
  animation: fade-up .9s var(--ease) .3s forwards;
}
.hero-lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2em;
  opacity: 0;
  animation: fade-up .9s var(--ease) .55s forwards;
}
.hero-actions { opacity: 0; animation: fade-up .9s var(--ease) .8s forwards; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  opacity: 0;
  animation: fade-up .9s var(--ease) 1.1s forwards;
}
@media (max-width: 700px) {
  .hero-scroll-cue { display: none; }
}
.hero-scroll-cue::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--color-white);
  border-radius: 50%;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 22px; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero--page { min-height: 66vh; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-zoom img, .reveal-zoom .photo-frame img { transform: scale(1.06); transition: transform 1.1s var(--ease); }
.reveal-zoom.is-visible img, .reveal-zoom.is-visible .photo-frame img { transform: scale(1); }

.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: .0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }
.stagger.is-visible > *:nth-child(9) { transition-delay: .64s; }
.stagger.is-visible > *:nth-child(10) { transition-delay: .72s; }
.stagger.is-visible > *:nth-child(11) { transition-delay: .80s; }
.stagger.is-visible > *:nth-child(12) { transition-delay: .88s; }

/* ---- Split section (photo + text) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split--reverse .split-text { order: 1; }
.photo-frame { overflow: hidden; border-radius: 4px; }
.photo-frame img { width: 100%; }
.split-media.tall .photo-frame { aspect-ratio: 4/5; }
.split-media.tall .photo-frame img { height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media, .split--reverse .split-text { order: initial; }
}

/* ---- Full width photo ---- */
.full-photo { width: 100%; overflow: hidden; }
.full-photo img { width: 100%; max-height: 640px; object-fit: cover; }

/* ---- Amenities grid ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.amenity {
  text-align: center;
  padding: 8px;
}
.amenity .icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  color: var(--color-gold);
}
.amenity .icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.amenity h3 { font-size: 1.02rem; margin-bottom: .2em; }
.amenity p { font-family: var(--font-ui); font-size: .82rem; color: #555; margin: 0; }
@media (max-width: 860px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } }

/* ---- Cards (destinations / values) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.card .card-media { aspect-ratio: 4/3; overflow: hidden; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card .card-body { padding: 24px 26px 28px; }
.card .card-body h3 { margin-bottom: .35em; }
.card .card-body p { font-size: .95rem; color: #4a4a4a; margin-bottom: .6em; }
.card .card-link { font-family: var(--font-ui); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--color-rose); }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }

.card--icon .card-media {
  aspect-ratio: auto;
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-rose-light);
}
.card--icon .card-media svg { width: 56px; height: 56px; stroke: var(--color-gold); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card { text-align: center; padding: 30px 16px; border: 1px solid #eee; border-radius: 6px; }
.value-card .value-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-gold); display: block; margin-bottom: .2em; }
.value-card h3 { margin-bottom: .4em; }
.value-card p { font-size: .9rem; color: #555; margin: 0; }
@media (max-width: 1000px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ---- CTA block ---- */
.cta-block {
  background: var(--color-rose-light);
  border-top: 1px solid var(--color-rose);
  border-bottom: 1px solid var(--color-rose);
  padding: 56px 24px;
  text-align: center;
}
.cta-block .eyebrow { color: var(--color-rose-dark); }
.cta-block h2 { color: var(--color-black); margin-bottom: .3em; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-block p { max-width: 560px; margin: 0 auto 1.6em; color: #444; }

/* ---- FAQ (native details) ---- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid #e6e0d8;
  padding: 6px 0;
}
.faq-item summary {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 34px 18px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--color-black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-rose);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 18px; color: #444; }

/* ---- Table (tarifs) ---- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-family: var(--font-ui); }
.price-table th, .price-table td { padding: 20px 22px; text-align: left; border-bottom: 1px solid #eee; }
.price-table th { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-gold); }
.price-table td.price { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-black); }
.price-table tr:last-child td { border-bottom: none; }

.event-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.event-tag {
  font-family: var(--font-ui);
  font-size: .82rem;
  padding: 10px 20px;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  color: var(--color-black);
}

.payment-list { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.payment-list li {
  font-family: var(--font-ui);
  font-size: .85rem;
  padding: 14px 22px;
  background: var(--color-white);
  border: 1px solid #e6e0d8;
  border-radius: 6px;
}

/* ---- Gallery / Lightbox ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #eee;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  transition: background .35s var(--ease);
}
.gallery-item .zoom-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item .zoom-icon svg { width: 32px; height: 32px; stroke: var(--color-white); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(26,26,26,.35); }
.gallery-item:hover .zoom-icon { opacity: 1; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-more { text-align: center; margin-top: 40px; }

.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15,15,15,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .3s var(--ease), visibility 0s; }
.lightbox-figure { max-width: 90vw; max-height: 86vh; text-align: center; }
.lightbox-figure img { max-width: 90vw; max-height: 80vh; width: auto; margin: 0 auto; border-radius: 3px; }
.lightbox-counter { color: #ccc; font-family: var(--font-ui); font-size: .8rem; margin-top: 14px; letter-spacing: .05em; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent; border: none; color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.lightbox-close { top: 14px; right: 14px; }
.lightbox-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 6px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover { color: var(--color-rose); }

/* ---- Reviews banner ---- */
.reviews-banner {
  padding: 48px 24px;
  text-align: center;
  background: var(--color-white);
  border-top: 1px solid #eee;
}
.reviews-stars { color: var(--color-gold); font-size: 1.3rem; letter-spacing: 2px; margin-bottom: .3em; }
.reviews-banner > p { font-family: var(--font-ui); font-size: .9rem; color: #555; margin-bottom: 1.2em; }
.review-cards {
  max-width: 1140px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.review-card {
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.review-card .review-stars { font-size: .9rem; margin-bottom: .6em; }
.review-card p { font-family: var(--font-body); font-size: .92rem; line-height: 1.6; color: #333; margin-bottom: 1.1em; }
.review-author { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; color: #777; }
.review-author svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 900px) { .review-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .review-cards { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.site-footer { background: var(--color-black); color: #d8d3cc; padding: 70px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid #333;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; color: #b3aea6; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.footer-social a:hover { background: var(--color-rose); border-color: var(--color-rose); }
.footer-social svg { width: 16px; height: 16px; fill: #d8d3cc; }
.site-footer h4 { font-family: var(--font-ui); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 12px; font-size: .92rem; }
.site-footer a:hover { color: var(--color-rose); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px;
  font-size: .8rem;
  color: #8f8a82;
  font-family: var(--font-ui);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 9999;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float.is-hidden { opacity: 0; pointer-events: none; transform: scale(.8); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--color-white); }

/* ---- Contact form ---- */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.contact-form .field-full { grid-column: 1 / -1; }
.contact-form label { display: block; font-family: var(--font-ui); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; color: #555; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  min-height: 44px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-rose); }
.contact-form .field-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: #444; }
.contact-form .field-checkbox input { width: 18px; height: 18px; min-height: auto; margin-top: 3px; }
.form-note { font-size: .82rem; color: #777; margin-top: 10px; }
.field-honeypot { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
@media (max-width: 700px) { .contact-form { grid-template-columns: 1fr; } }

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: var(--color-black);
  color: var(--color-white);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner.is-shown { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner p { margin: 0; font-size: .88rem; line-height: 1.5; color: rgba(255,255,255,.85); max-width: 760px; }
.cookie-banner a { color: var(--color-rose); }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn, .cookie-banner .btn--outline { padding: 10px 22px; font-size: .75rem; min-height: 38px; }
.cookie-banner .btn--outline { border-color: rgba(255,255,255,.5); color: var(--color-white); }
.cookie-banner .btn--outline:hover { background: var(--color-white); color: var(--color-black); }
@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn, .cookie-banner-actions .btn--outline { flex: 1; justify-content: center; }
}

/* ---- Map ---- */
.map-wrap { margin-top: 40px; border-radius: 6px; overflow: hidden; aspect-ratio: 16/7; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .map-wrap { aspect-ratio: 4/5; } }

.access-list { margin-top: 24px; }
.access-list li { padding: 10px 0; border-bottom: 1px dashed #e2ddd4; font-family: var(--font-ui); font-size: .92rem; }

/* ---- Quote block (qui sommes-nous) ---- */
.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--color-black);
  border-left: 3px solid var(--color-gold);
  padding-left: 28px;
  margin: 0 0 1.2em;
}

.social-links { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.social-links a {
  font-family: var(--font-ui);
  font-size: .85rem;
  padding: 12px 22px;
  border: 1px solid var(--color-black);
  border-radius: 999px;
}
.social-links a:hover { background: var(--color-black); color: var(--color-white); }

.link-list li { padding: 8px 0; }
.link-list a { color: var(--color-rose); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Icon heading (Découverte activities) ---- */
.activity { padding: 34px 0; border-bottom: 1px solid #eee2d6; }
.activity:last-child { border-bottom: none; }
.icon-heading { display: flex; align-items: center; gap: 16px; margin-bottom: .5em; }
.icon-heading .icon-sm { width: 38px; height: 38px; flex-shrink: 0; color: var(--color-gold); }
.icon-heading .icon-sm svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.icon-heading h2, .icon-heading h3 { margin: 0; }
.activity p { max-width: 700px; }
.activity-link { font-family: var(--font-ui); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--color-rose); }
.activity-link:hover { color: var(--color-black); }
.activity-media { border-radius: 4px; overflow: hidden; margin-bottom: 22px; aspect-ratio: 16/9; }
.activity-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---- Legal / document pages ---- */
.legal-page { padding-top: calc(var(--nav-h) + 64px); padding-bottom: 90px; }
.legal-content { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.legal-content h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .25em; }
.legal-content .updated { font-family: var(--font-ui); font-size: .82rem; letter-spacing: .04em; color: #8a8a8a; text-transform: uppercase; margin-bottom: 2.6em; }
.legal-content .intro p { color: #333; }
.legal-content h2 { font-size: 1.4rem; color: var(--color-black); font-family: var(--font-display); margin-top: 2.2em; padding-top: .6em; border-top: 1px solid #eee2d6; scroll-margin-top: calc(var(--nav-h) + 24px); }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p { color: #3a3a3a; }
.legal-content ul { margin: 0 0 1.3em; padding-left: 1.3em; list-style: disc; }
.legal-content li { margin-bottom: .45em; color: #3a3a3a; }
.legal-content strong { color: var(--color-black); font-weight: 600; }
.legal-content a { color: var(--color-rose); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--color-black); }
.legal-content address { font-style: normal; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.4em; }
.legal-content ul ul { margin-top: .5em; margin-bottom: .5em; }

.legal-toc { background: var(--color-rose-light); border-radius: 6px; padding: 30px 34px; margin: 2em 0 3em; }
.legal-toc p { font-family: var(--font-ui); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-rose-dark); font-weight: 600; margin: 0 0 1em; }
.legal-toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 30px; list-style: decimal; }
.legal-toc li { margin-bottom: .55em; font-family: var(--font-ui); font-size: .85rem; break-inside: avoid; }
.legal-toc a { color: var(--color-black); text-decoration: none; }
.legal-toc a:hover { color: var(--color-rose); text-decoration: underline; }
@media (max-width: 560px) {
  .legal-toc ol { columns: 1; }
}

/* ---- Property carousel ---- */
.carousel-wrap { position: relative; padding: 0 24px; margin-top: 44px; }
.carousel {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-item {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: center;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #eee;
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid #eee;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .25s var(--ease);
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: -4px; }
.carousel-next { right: -4px; }
.carousel-btn svg { width: 20px; height: 20px; stroke: var(--color-black); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 700px) {
  .carousel-item { width: 76vw; }
  .carousel-btn { display: none; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal, .hero-content .eyebrow, .hero h1, .hero-lead, .hero-actions, .hero-scroll-cue, .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
