/* ==========================================================================
   Demo Hotel — SeaCoast
   Premium Hotel Stylesheet
   Style: Modern Luxury — inspired by Ambassador BKK aesthetic
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: #3A362F;
  background: #FAF6F0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: #3C6E6A; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #2f5f5c; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Palette — Identite visuelle demo --- */
:root {
  --blanc:      #FAF6F0;
  --sable:      #E4D8C4;
  --lin:        #D8CBB4;
  --piscine:    #3C6E6A;
  --piscine-dark: #2f5f5c;
  --piscine-light: rgba(60,110,106,0.10);
  --olive:      #7C8B5F;
  --navy:       #2E2B24;
  --navy-light: #3A362F;
  --terracotta: #C98A6B;
  --terracotta-dark: #b47a5c;
  --heading:    #2E2B24;
  --body:       #3A362F;
  --muted:      #6B6455;
  --subtle:     #8C8375;
  --faint:      #9A927F;
  --border:     rgba(0,0,0,0.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.14);
  --radius-sm:  5px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--piscine);
  margin-bottom: 0.75rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--piscine);
  margin: 0 auto;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

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

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.64s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   HEADER — Dark navbar, Ambassador style
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(46, 43, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(46, 43, 36, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; color: #fff; }

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--piscine);
  transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #fff;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.btn-reserve-header {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.35s ease-out, opacity 0.25s ease-out;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  padding: 100px 2rem 2rem;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transition: opacity 0.35s ease-out;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
}

.nav-mobile a {
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, padding-left 0.3s ease-out;
}

.nav-mobile a:hover {
  padding-left: 8px;
  color: var(--piscine);
}

.nav-mobile .btn-primary {
  margin-top: 2rem;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
}

/* ==========================================================================
   BUTTONS — Ambassador teal style
   ========================================================================== */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 34px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,138,107,0.3);
}

.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--heading);
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--heading);
  color: #fff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1ead57;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

/* ==========================================================================
   IMAGE PLACEHOLDERS
   ========================================================================== */
.img-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
  .img-placeholder::before { animation: none; }
}

.img-placeholder--hero {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: linear-gradient(165deg, #3A362F 0%, #2E2B24 50%, #1a1815 100%);
}

.img-placeholder--card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: linear-gradient(155deg, #e8e8e8 0%, #d0d0d0 50%, #bbb 100%);
}

.img-placeholder--square {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e0e0e0 0%, #ccc 50%, #bbb 100%);
}

.img-placeholder--map {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0,0,0,0.04) 30px, rgba(0,0,0,0.04) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0,0,0,0.04) 30px, rgba(0,0,0,0.04) 31px),
    linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.img-placeholder--gallery {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #e8e8e8 0%, #d5d5d5 50%, #c0c0c0 100%);
}

.img-placeholder--wide {
  aspect-ratio: 21 / 9;
  border-radius: 0;
  background: linear-gradient(160deg, #e0e0e0 0%, #ccc 30%, #999 100%);
}

.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

/* Badge */
.badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  z-index: 10;
}

/* ==========================================================================
   HERO — Full-bleed with dark overlay, Ambassador style
   ========================================================================== */
.hero {
  position: relative;
  padding: 0;
  margin-top: 0;
}

.hero__visual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(to top, rgba(46,43,36,0.8) 0%, rgba(46,43,36,0.4) 50%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
}

.hero__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--piscine);
  margin-bottom: 0.75rem;
}

.hero__overlay h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  max-width: 600px;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.hero__overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  max-width: 440px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.amenity-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--piscine-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--piscine);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.amenity-item:hover .amenity-item__icon {
  transform: scale(1.08);
  background: rgba(60,110,106,0.16);
}

.amenity-item__label {
  font-size: 0.88rem;
  color: var(--body);
  font-weight: 500;
}

/* ==========================================================================
   APARTMENT CARDS — Clean, sharp edges
   ========================================================================== */
.apt-grid {
  display: grid;
  gap: 2rem;
}

.apt-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.apt-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.apt-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.apt-card__title {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.apt-card__cap {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-bottom: 0.75rem;
}

.apt-card__amenities {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.apt-card__amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--muted);
}

.apt-card__amenity i,
.apt-card__amenity svg {
  color: var(--piscine);
}

.apt-card__price {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.apt-card__price small {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--subtle);
}

.apt-card__detail-link {
  font-size: 0.78rem;
  color: var(--piscine);
  border: none;
  background: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apt-card__detail-link::after {
  content: ' \2192';
}

.apt-card__detail-link:hover {
  color: var(--piscine-dark);
}

.apt-card .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 12px;
  font-size: 0.78rem;
}

/* Carousel */
.apt-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.apt-carousel::-webkit-scrollbar { display: none; }

.apt-carousel .apt-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.25rem;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lin);
  transition: background 0.3s, transform 0.3s;
}

.carousel-dots span.active {
  background: var(--piscine);
  transform: scale(1.2);
}

/* ==========================================================================
   TRUST / REVIEWS
   ========================================================================== */
.trust-section {
  background: var(--sable);
  position: relative;
}

.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--piscine-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--piscine);
  margin: 0 auto 1.25rem;
}

.stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 1rem 0 0.75rem;
}

.stars .star {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--piscine);
}

.stars .star--empty {
  background: transparent;
  border: 1.5px solid var(--piscine);
}

.review-placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  background: var(--sable);
  color: var(--subtle);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--body);
  padding: 14px 18px;
  background: var(--sable);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.location-info__item:hover {
  box-shadow: var(--shadow-sm);
}

.location-info__item i,
.location-info__item svg {
  color: var(--piscine);
  flex-shrink: 0;
}

/* ==========================================================================
   CTA BANNER — Dark navy, Ambassador style
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(60,110,106,0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(60,110,106,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  opacity: 0.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  position: relative;
}

.cta-banner .btn-primary {
  background: var(--terracotta);
  color: #fff;
  position: relative;
}

.cta-banner .btn-primary:hover {
  background: #FAF6F0;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-banner .btn-whatsapp {
  position: relative;
}

/* ==========================================================================
   FOOTER — Dark navy
   ========================================================================== */
.footer {
  background: #1a1815;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer .logo {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

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

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--piscine);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer__social a:hover {
  border-color: var(--piscine);
  color: var(--piscine);
  background: rgba(60,110,106,0.1);
}

.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  margin-top: 2.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ==========================================================================
   FILTER CHIPS
   ========================================================================== */
.filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chip {
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--lin);
  background: #fff;
  color: var(--body);
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip:hover {
  border-color: var(--piscine);
  color: var(--piscine);
}

.chip.active {
  background: var(--piscine);
  border-color: var(--piscine);
  color: #fff;
}

/* ==========================================================================
   MODAL — Slide-up panel
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 43, 36, 0);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  transition: background 0.35s ease;
}

.modal-overlay.open {
  display: flex;
  background: rgba(46, 43, 36, 0.7);
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem 1.5rem 2.5rem;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--lin);
  margin: 0 auto 1.5rem;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--sable);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
  z-index: 5;
}

.modal__close:hover {
  background: var(--navy);
  color: #fff;
}

.modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 1.5rem;
}

.modal__title {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.modal__cap {
  font-size: 0.82rem;
  color: var(--subtle);
  margin-bottom: 0.5rem;
}

.modal__details {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.modal__detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.modal__detail-item i,
.modal__detail-item svg {
  color: var(--piscine);
}

.modal__features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.modal__feature-badge {
  display: inline-block;
  background: var(--piscine);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.modal__equip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 2rem;
}

.modal__equip span {
  font-size: 0.82rem;
  color: var(--body);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__equip span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--piscine);
  flex-shrink: 0;
}

.modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--sable);
}

/* ==========================================================================
   DATE PICKER (Disponibilites)
   ========================================================================== */
.date-picker-wrapper {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}

.date-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.date-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.date-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.date-field input,
.date-field select {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.date-field input:focus,
.date-field select:focus {
  outline: none;
  border-color: var(--piscine);
}

.date-field select option {
  color: #333;
  background: #fff;
}

.date-picker-wrapper .btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.date-picker-wrapper .btn-primary:hover {
  background: #fff;
  color: var(--navy);
}

/* Results */
.availability-results {
  margin-top: 2rem;
}

.availability-results__header {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sable);
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}

.result-card:hover {
  box-shadow: var(--shadow-md);
}

.result-card__status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.result-card__status--available {
  background: rgba(60,110,106,0.12);
  color: var(--piscine);
}

.result-card__status--unavailable {
  background: rgba(220,53,69,0.08);
  color: #dc3545;
}

.result-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   SHOWCASE GRID — Grille 2x2 avec overlay au survol
   ========================================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.showcase-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.showcase-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

/* Photo (ou placeholder) — ratio 4:3, object-fit cover */
.showcase-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay teal piscine — apparait au hover */
.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 110, 106, 0.0);
  transition: background 0.3s ease;
  z-index: 1;
}

/* Voile sombre permanent en bas pour lisibilite du titre */
.showcase-card__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(46,43,36,0.6) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Contenu texte overlay */
.showcase-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Titre — toujours visible */
.showcase-card__title {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}

/* Description — cachee par defaut, apparait au hover */
.showcase-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

/* Lien "Ver detalle" — cache par defaut */
.showcase-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  margin-top: 0;
}

/* === HOVER STATE === */
.showcase-card:hover .showcase-card__img {
  transform: scale(1.04);
}

.showcase-card:hover .showcase-card__overlay {
  background: rgba(60, 110, 106, 0.55);
}

.showcase-card:hover .showcase-card__visual::after {
  opacity: 0;
}

.showcase-card:hover .showcase-card__title {
  transform: translateY(-4px);
}

.showcase-card:hover .showcase-card__desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.5rem;
}

.showcase-card:hover .showcase-card__link {
  opacity: 1;
  margin-top: 0.75rem;
}

/* === MOBILE — description toujours visible (pas de hover) === */
@media (hover: none) {
  .showcase-card__desc {
    max-height: 80px;
    opacity: 0.85;
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }

  .showcase-card__link {
    opacity: 1;
    margin-top: 0.5rem;
  }

  .showcase-card__overlay {
    background: rgba(60, 110, 106, 0.0);
  }
}

/* === RESPONSIVE — 2 colonnes desktop === */
@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .showcase-card__content {
    padding: 2rem;
  }
}

/* ==========================================================================
   HOME AMENITIES GRID — Card style
   ========================================================================== */
.home-amenities {
  background: var(--blanc);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.amenity-card {
  background: var(--sable);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.amenity-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--piscine-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--piscine);
  margin: 0 auto 1rem;
}

.amenity-card__title {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.amenity-card__text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ==========================================================================
   HOME REVIEWS
   ========================================================================== */
.home-reviews {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.home-review {
  padding: 1.25rem;
  background: var(--sable);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--piscine);
}

.home-review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.home-review__text {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.home-review__author {
  font-size: 0.78rem;
  color: var(--subtle);
  font-weight: 600;
}

/* ==========================================================================
   HOME LOCATION LIST
   ========================================================================== */
.home-location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.home-location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--body);
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ==========================================================================
   IMAGE CAROUSEL — Auto-rotation + fleches manuelles
   ========================================================================== */
.img-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.img-carousel__slide.active {
  opacity: 1;
  z-index: 1;
}

/* Fleches */
.img-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.img-carousel:hover .img-carousel__arrow {
  opacity: 1;
}

.img-carousel__arrow:hover {
  background: rgba(0,0,0,0.6);
}

.img-carousel__arrow--prev { left: 12px; }
.img-carousel__arrow--next { right: 12px; }

/* Dots indicateurs */
.img-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}

.img-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.img-carousel__dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Variante hero — plein ecran */
.img-carousel--hero {
  height: 100%;
}

.img-carousel--hero .img-carousel__track {
  height: 100%;
}

.img-carousel--hero .img-carousel__dots {
  bottom: 80px;
}

.img-carousel--hero .img-carousel__arrow {
  opacity: 0.6;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.img-carousel--hero:hover .img-carousel__arrow {
  opacity: 1;
}

.img-carousel--hero .img-carousel__arrow--prev { left: 20px; }
.img-carousel--hero .img-carousel__arrow--next { right: 20px; }

/* Variante full-width */
.img-carousel--fullwidth {
  height: 340px;
}

.img-carousel--fullwidth .img-carousel__track {
  height: 340px;
}

@media (min-width: 768px) {
  .img-carousel--fullwidth,
  .img-carousel--fullwidth .img-carousel__track {
    height: 400px;
  }
}

/* Fleches toujours visibles sur mobile (pas de hover) */
@media (hover: none) {
  .img-carousel__arrow {
    opacity: 0.7;
  }
}

/* ==========================================================================
   ROOMS CAELUM — Ambassador BKK style
   ========================================================================== */
.rooms-caelum {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rooms-caelum__titles {
  text-align: center;
  margin-bottom: 4rem;
}

.rooms-caelum__titles-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.rooms-caelum__titles-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--piscine);
  margin-bottom: 1rem;
}

.rooms-caelum__titles-paragraph {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.rooms-caelum__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rooms-caelum__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}

.rooms-caelum__image {
  overflow: hidden;
}

.rooms-caelum__image img:not(.img-carousel__slide) {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Carousel inside rooms-caelum */
.rooms-caelum__image .img-carousel {
  height: 320px;
}

.rooms-caelum__image .img-carousel__track {
  height: 320px;
}

.rooms-caelum__item:hover .rooms-caelum__image img {
  transform: scale(1.03);
}

.rooms-caelum__description {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rooms-caelum__description-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.rooms-caelum__description-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--piscine);
  margin-bottom: 1.25rem;
}

.rooms-caelum__description-paragraph {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.rooms-caelum__description-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--piscine);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease, gap 0.3s ease;
}

.rooms-caelum__description-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.rooms-caelum__description-link:hover {
  color: var(--heading);
}

.rooms-caelum__description-link:hover::after {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .rooms-caelum__item {
    flex-direction: row;
    align-items: stretch;
    min-height: 500px;
  }

  .rooms-caelum__image {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .rooms-caelum__image img:not(.img-carousel__slide) {
    height: 100%;
    min-height: 380px;
  }

  .rooms-caelum__image .img-carousel,
  .rooms-caelum__image .img-carousel__track {
    height: 100%;
    min-height: 380px;
  }

  .rooms-caelum__description {
    flex: 1;
    padding: 3rem 3.5rem;
  }

  .rooms-caelum__item--reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1024px) {
  .rooms-caelum {
    padding: 0;
    max-width: 100%;
  }

  .rooms-caelum__titles {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2.5rem;
  }

  .rooms-caelum__image {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .rooms-caelum__description {
    padding: 4rem 4.5rem;
  }

  .rooms-caelum__item {
    min-height: 420px;
  }

  .rooms-caelum__image img:not(.img-carousel__slide) {
    min-height: 420px;
  }

  .rooms-caelum__image .img-carousel,
  .rooms-caelum__image .img-carousel__track {
    min-height: 420px;
  }
}

/* ==========================================================================
   INCLUDED STRIP (Appartements)
   ========================================================================== */
.included-strip {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0;
}

.included-strip .section-label {
  color: var(--piscine);
}

.included-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(60,110,106,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--piscine);
}

.included-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   NUESTROS ESPACIOS — Bande photo pleine largeur, style Ambassador
   ========================================================================== */
.espacios {
  background: #fff;
}

/* --- Introduction (titre + sous-titre) --- */
.espacios__introduction {
  text-align: center;
  padding: 5rem 1.5rem 2.5rem;
}

.espacios__title {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.espacios__subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--piscine);
}

/* --- Carousel / bande horizontale --- */
.espacios__carousel {
  display: flex;
  flex-direction: column;
}

/* --- Chaque bloc image --- */
.espacios__item {
  position: relative;
  overflow: hidden;
}

.espacios__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.espacios__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* --- Inner overlay (degrade + texte en bas) --- */
.espacios__inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 40%, transparent 65%);
  display: flex;
  align-items: flex-end;
  z-index: 1;
  pointer-events: none;
}

.espacios__inner-wrap {
  padding: 1.5rem;
  width: 100%;
}

.espacios__inner-title {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  transition: transform 0.3s ease;
}

.espacios__inner-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

/* --- Badge flottant (Google Reviews / "Alojamiento nuevo") --- */
.espacios__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

/* Quand le badge est present, remonter le texte inner au-dessus */
.espacios__item:has(.espacios__badge) .espacios__inner-wrap {
  padding-bottom: 3.5rem;
}

.espacios__badge-score {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
}

.espacios__badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Hover desktop : zoom image + apparition description --- */
.espacios__item:hover .espacios__img {
  transform: scale(1.04);
}

.espacios__item:hover .espacios__inner-title {
  transform: translateY(-2px);
}

.espacios__item:hover .espacios__inner-desc {
  opacity: 1;
  max-height: 30px;
  margin-top: 0.35rem;
}

/* --- Mobile : pas de hover, description masquee --- */
@media (hover: none) {
  .espacios__inner-desc {
    opacity: 0;
    max-height: 0;
  }
}

/* --- Tablette : 2 colonnes --- */
@media (min-width: 600px) {
  .espacios__carousel {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .espacios__item {
    flex: 0 0 50%;
  }

  .espacios__image {
    height: 320px;
  }
}

/* --- Desktop : 4 colonnes cote a cote, bande continue --- */
@media (min-width: 1024px) {
  .espacios__introduction {
    padding: 6rem 2.5rem 3rem;
  }

  .espacios__carousel {
    flex-wrap: nowrap;
  }

  .espacios__item {
    flex: 1 1 0%;
  }

  .espacios__image {
    height: 420px;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
  section { padding: 6rem 0; }

  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .btn-reserve-header { display: inline-block; }

  .amenities-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }

  .apt-grid { grid-template-columns: repeat(2, 1fr); }

  .apt-carousel .apt-card { flex: 0 0 320px; }

  .location-content {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .location-content .img-placeholder { flex: 0 0 50%; }

  .date-inputs {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }

  .date-field { flex: 1; }

  .result-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .apt-grid { grid-template-columns: repeat(2, 1fr); }

  .modal {
    border-radius: var(--radius-lg);
    max-height: 88vh;
    margin-bottom: 2vh;
  }

  .modal-overlay {
    align-items: center;
  }
}

/* ==========================================================================
   WHATSAPP — Bouton flottant bas droite
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
