:root {
  --abyss: #0A2540;
  --ocean: #118C9E;
  --turquoise: #5FD3D6;
  --volcanic: #16181C;
  --foam: #D7F2F0;
  --silver: #C8D6D9;
  --pearl: #FAFCFD;
  --mist: #F0F6F8;
  --text-muted: #3d5a6e;
  --container: 80rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--pearl);
  color: var(--abyss);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ─── Layout ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 3.25rem 0; }
@media (min-width: 768px) { .section { padding: 4.5rem 0; } }

.section--page-top { padding-top: 5.5rem; }
@media (min-width: 768px) { .section--page-top { padding-top: 7rem; } }

.section-head { margin-bottom: 2rem; }
@media (min-width: 768px) { .section-head { margin-bottom: 2.5rem; } }

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

/* ─── Typography ─────────────────────────────────── */
.font-cherry { font-family: 'Cherry Bomb One', cursive; }
.font-cormorant { font-family: 'Cormorant Garamond', serif; }

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  color: var(--foam);
  line-height: 1;
  margin: 0 0 1.5rem;
}

.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--silver);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.heading-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.prose { color: var(--text-muted); line-height: 1.75; font-size: 1.05rem; }
.prose--light { color: var(--silver); line-height: 1.75; }
.prose--sm { font-size: 0.9rem; }

/* ─── Sections colors ────────────────────────────── */
.bg-pearl { background: var(--pearl); color: var(--abyss); }
.bg-mist { background: var(--mist); color: var(--abyss); }
.bg-abyss { background: var(--abyss); color: var(--foam); }
.bg-volcanic { background: var(--volcanic); color: var(--foam); }

/* ─── Vagues : pont entre deux couleurs de section ─ */
.wave-bridge {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0 0 -2px;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wave-bridge svg {
  display: block;
  width: 100%;
  height: clamp(52px, 8vw, 100px);
  margin: 0;
  vertical-align: top;
  transform: translateY(1px);
}

/* ─── Header ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(95, 211, 214, 0.1);
}

.site-header--glass {
  position: fixed;
  left: 0; right: 0;
  background: rgba(10, 37, 64, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header--solid { background: var(--abyss); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) { .site-header__inner { height: 5rem; } }

.site-header__logo {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  color: var(--foam);
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.site-header__logo:hover { color: var(--turquoise); transform: scale(1.03); }

.site-nav { display: none; gap: 2rem; }
@media (min-width: 1024px) { .site-nav { display: flex; } }

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(215, 242, 240, 0.8);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link--active { color: var(--turquoise); }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }

.menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foam);
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 50;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 37, 64, 0.8);
  backdrop-filter: blur(4px);
}
.mobile-menu__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 18rem; background: var(--abyss);
  padding: 1.5rem; display: flex; flex-direction: column;
}
.mobile-menu__link {
  display: block; padding: 1rem 0;
  border-bottom: 1px solid rgba(95, 211, 214, 0.1);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(215, 242, 240, 0.8);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  overflow: hidden;
}

.hero__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.75) 60%, rgba(10,37,64,0.92) 100%);
}

.hero__glow {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 50%;
  background: radial-gradient(ellipse at center bottom, rgba(17,140,158,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative; z-index: 1;
  text-align: center; padding: 4.5rem 1rem 7rem;
  max-width: 56rem;
  width: 100%;
}

.hero__splash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.hero__splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1rem;
}

.hero__splash-name {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(7rem, 36vw, 14rem);
  color: var(--foam);
  line-height: 0.9;
  animation: heroSplashIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__splash-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  animation: heroSplashIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero__splash-tagline-main {
  font-size: clamp(0.78rem, 3.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
  line-height: 1.2;
}

.hero__splash-tagline-sub {
  font-size: clamp(0.7rem, 3vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(215, 242, 240, 0.85);
  line-height: 1.2;
}

@media (max-width: 480px) {
  .hero__splash-inner { gap: 1.1rem; }
  .hero__splash-name { font-size: clamp(7.5rem, 42vw, 14rem); }
  .hero__splash-tagline-main {
    font-size: clamp(0.72rem, 3.8vw, 1rem);
    letter-spacing: 0.18em;
  }
  .hero__splash-tagline-sub {
    font-size: clamp(0.65rem, 3.2vw, 0.85rem);
    letter-spacing: 0.14em;
  }
}

@media (max-width: 360px) {
  .hero__splash-name { font-size: clamp(6.5rem, 44vw, 14rem); }
  .hero__splash-tagline-main {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
  .hero__splash-tagline-sub {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
}

.hero__main {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
              visibility 1s 0.12s;
}

.hero--revealed .hero__splash {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero--revealed .hero__main {
  opacity: 1;
  visibility: visible;
}

.hero:not(.hero--revealed) .hero__main .anim-fade-up {
  animation: none;
  opacity: 0;
  transform: translateY(42px);
}

.hero--revealed .hero__main .anim-fade-up {
  animation: heroContentIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero--revealed .hero__main .anim-delay-1 { animation-delay: 0.1s; }
.hero--revealed .hero__main .anim-delay-2 { animation-delay: 0.22s; }
.hero--revealed .hero__main .anim-delay-3 { animation-delay: 0.34s; }

@keyframes heroSplashIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: none; }
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__splash { display: none; }
  .hero__main { opacity: 1; visibility: visible; }
  .hero .hero__main .anim-fade-up { animation: none !important; opacity: 1; transform: none; }
}

.hero__actions {
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
@media (min-width: 640px) { .hero__actions { flex-direction: row; justify-content: center; } }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: inherit; font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.85rem 2rem; border-radius: 12px; border: none;
  cursor: pointer; transition: all 0.25s;
}

.btn--primary { background: var(--ocean); color: var(--pearl); }
.btn--primary:hover { background: var(--turquoise); color: var(--abyss); }

.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { transform: scale(1.03); }

.btn--sm { padding: 0.55rem 1rem; font-size: 0.7rem; }

.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  border-radius: 999px; padding: 1rem;
  animation: pulse-wa 3s ease-in-out infinite;
}
@media (min-width: 640px) { .whatsapp-float { display: none; } }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ─── Pillars ────────────────────────────────────── */
.pillars {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.pillar-card {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(95, 211, 214, 0.16);
}

.pillar-card__mark {
  display: block;
  width: 2.25rem;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--turquoise);
}
.pillar-card--ocean .pillar-card__mark { background: var(--ocean); }
.pillar-card--turquoise .pillar-card__mark { background: var(--turquoise); }
.pillar-card--silver .pillar-card__mark { background: var(--silver); }

.pillar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--foam);
  margin: 0 0 0.5rem;
}
.pillar-card p { color: var(--silver); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* ─── Cards & grids ──────────────────────────────── */
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: linear-gradient(135deg, var(--volcanic), var(--abyss));
  border: 1px solid rgba(95, 211, 214, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.45);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-4px); }

.card__img {
  border-radius: 12px; overflow: hidden; margin-bottom: 1rem;
  aspect-ratio: 16/10;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.25);
}
.card__img img { width: 100%; height: 100%; object-fit: cover; }

.badge {
  display: inline-block;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--turquoise);
  border: 1px solid rgba(95, 211, 214, 0.3);
  padding: 0.25rem 0.75rem; border-radius: 999px;
}

.tag {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--turquoise);
  border: 1px solid rgba(95, 211, 214, 0.2);
  padding: 0.25rem 0.75rem; border-radius: 999px;
}

.price { color: var(--turquoise); font-weight: 600; font-size: 1.25rem; }

/* Dive tile */
.dive-tile {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.25);
  transition: transform 0.4s;
}
.dive-tile:hover { transform: scale(1.02); }
.dive-tile img { width: 100%; height: 100%; object-fit: cover; }
.dive-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.9) 0%, rgba(10,37,64,0.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.dive-tile__meta { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--turquoise); }
.dive-tile__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--foam); margin: 0.25rem 0 0; }

/* ─── Reviews ────────────────────────────────────── */
.review-card {
  background: var(--mist); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem;
}
.stars { color: var(--turquoise); letter-spacing: 2px; }

/* ─── Gallery ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.25);
}
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; }

/* ─── Pricing table ──────────────────────────────── */
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(95, 211, 214, 0.1);
}
.price-row__name { color: var(--silver); font-size: 0.95rem; }
.price-row__value { color: var(--turquoise); font-weight: 600; white-space: nowrap; }

.price-category { margin-bottom: 2rem; }
.price-category h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.75rem;
  color: var(--foam); margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(95, 211, 214, 0.2);
}

/* ─── Article layouts ────────────────────────────── */
.article-split {
  display: grid; gap: 2rem; align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .article-split { grid-template-columns: 1fr 1fr; }
  .article-split--reverse .article-split__media { order: 2; }
  .article-split--reverse .article-split__body { order: 1; }
}

.article-card {
  display: grid; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, var(--volcanic), var(--abyss));
  border: 1px solid rgba(95, 211, 214, 0.2);
  border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem;
}
@media (min-width: 1024px) { .article-card { grid-template-columns: 1fr 1fr; padding: 1.75rem; } }

.article-stack { margin-bottom: 2.5rem; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--volcanic), var(--abyss));
  padding: 3rem 0 1.75rem; color: var(--foam);
}
.site-footer__grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer__logo {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  color: var(--foam);
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.2s, transform 0.2s;
}
.site-footer__logo:hover { color: var(--turquoise); transform: scale(1.03); }
.site-footer__label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--turquoise); margin-bottom: 1rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(95, 211, 214, 0.1);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
@media (min-width: 640px) {
  .site-footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ─── Lightbox ───────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10, 37, 64, 0.95);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--foam); cursor: pointer; padding: 0.5rem;
}
.lightbox__media { max-width: min(96vw, 1200px); max-height: 90vh; border-radius: 12px; width: auto; height: auto; }

/* ─── Map ────────────────────────────────────────── */
.map-embed { height: 16rem; filter: grayscale(30%); border: 0; width: 100%; }
@media (min-width: 768px) { .map-embed { height: 20rem; } }

/* ─── Utils ──────────────────────────────────────── */
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gap-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.75rem; font-size: 0.75rem; }
.gap-meta span { color: var(--silver); }
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { display: flex; gap: 0.75rem; margin-bottom: 1rem; color: var(--silver); text-align: left; }
.list-check li::before { content: '✓'; color: var(--turquoise); flex-shrink: 0; }
.list-dots { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.list-dots li { display: flex; gap: 0.5rem; color: var(--silver); font-size: 0.9rem; margin-bottom: 0.35rem; }
.list-dots li::before { content: '•'; color: var(--turquoise); }
.mb-0 { margin-bottom: 0; }
.site-footer .container {
  position: relative;
  z-index: 3;
}

.mt-lg { margin-top: 1.75rem; }
.max-w-prose { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-narrow { max-width: 42rem; margin-left: auto; margin-right: auto; }
.whitespace-pre { white-space: pre-line; }

/* ─── Typo Cherry Bomb (titres de pages) ─────────── */
.page-title {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(2.2rem, 8vw, 3.75rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--abyss);
}

.heading-section {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--abyss);
}
.heading-section--light { color: var(--foam); }

.label-sm {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--turquoise); margin-bottom: 0.5rem;
}
.meta-turquoise { color: var(--turquoise); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }
.meta-muted { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; color: var(--silver); }

.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.review-badge { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ocean); margin-bottom: 1.5rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--turquoise); transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.55rem; color: var(--foam); }
.link-arrow svg { width: 14px; height: 14px; }

/* ─── Hero vague intégrée ────────────────────────── */
.hero__wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 6;
  line-height: 0; pointer-events: none;
}
.hero__wave svg {
  display: block; width: 100%;
  height: clamp(60px, 10vw, 110px);
}

.header-wa-btn { display: none; }
@media (min-width: 640px) { .header-wa-btn { display: inline-flex !important; } }

.btn__icon { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform 0.25s; }
.btn:hover .btn__icon { transform: translateX(3px); }
.icon-wa { flex-shrink: 0; }

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(17, 140, 158, 0.35); }
.btn--whatsapp:hover { transform: translateY(-2px) scale(1.02); }

/* ─── Animations entrée hero (mouvement seul, pas de fondu) ─ */
@keyframes fadeUp {
  from { transform: translateY(42px); }
  to { transform: none; }
}
.anim-fade-up { animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both; }
.anim-delay-1 { animation-delay: 0.18s; }
.anim-delay-2 { animation-delay: 0.36s; }
.anim-delay-3 { animation-delay: 0.54s; }

/* ─── Reveal scroll : remontée sur le contenu, pas le fond ─ */
.reveal { opacity: 1; }

section.reveal > * {
  transform: translateY(52px);
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
section.reveal.is-visible > * { transform: none; }

.reveal:not(section) {
  transform: translateY(52px);
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.reveal:not(section).is-visible { transform: none; }

/* ─── Ambiance (bulles, poissons) ─────────────────── */
.hero,
.bg-abyss,
.bg-volcanic,
.bg-mist,
.bg-pearl,
.site-footer {
  position: relative;
  overflow: hidden;
}

.section-ambiance {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg,
.hero__overlay,
.hero__glow,
.hero__grain {
  position: absolute;
  z-index: 0;
}

.hero .hero__content {
  position: relative;
  z-index: 5;
}

.bg-abyss > .container,
.bg-abyss > .pillars,
.bg-volcanic > .container,
.bg-mist > .container,
.bg-pearl > .container {
  position: relative;
  z-index: 3;
}

.bubbles { position: absolute; inset: 0; }
.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(215, 242, 240, 0.28), rgba(95, 211, 214, 0.1) 52%, transparent 72%);
  border: 1px solid rgba(215, 242, 240, 0.5);
  box-shadow: 0 0 16px rgba(95, 211, 214, 0.32), inset 0 0 10px rgba(255, 255, 255, 0.22);
  animation: riseSection linear infinite;
  will-change: bottom, opacity;
}
.bubble--light {
  background: radial-gradient(circle at 30% 30%, rgba(17, 140, 158, 0.42), rgba(95, 211, 214, 0.28) 52%, rgba(95, 211, 214, 0.06));
  border: 1px solid rgba(17, 140, 158, 0.45);
  box-shadow: 0 0 14px rgba(17, 140, 158, 0.28), inset 0 0 8px rgba(255, 255, 255, 0.45);
  animation-name: riseSectionLight;
}
@keyframes riseSectionLight {
  0% { bottom: var(--bubble-from, -40px); opacity: 0; }
  6% { opacity: var(--bubble-peak, 0.58); }
  92% { opacity: calc(var(--bubble-peak, 0.58) * 0.55); }
  100% { bottom: var(--bubble-to, 100%); opacity: 0; }
}

@keyframes riseSection {
  0% { bottom: var(--bubble-from, -40px); opacity: 0; }
  6% { opacity: var(--bubble-peak, 0.5); }
  92% { opacity: calc(var(--bubble-peak, 0.5) * 0.5); }
  100% { bottom: var(--bubble-to, 100%); opacity: 0; }
}

.fish-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 4; }
.fish-layer--overlay { z-index: 4; }
.fish {
  position: absolute;
  width: var(--fish-size, 32px);
  color: var(--fish-color, rgba(215, 242, 240, 0.8));
  filter: drop-shadow(0 1px 6px rgba(95, 211, 214, 0.35));
  opacity: 0.82;
  will-change: left, top, transform;
  pointer-events: none;
  transform-origin: center center;
}
.fish svg { width: 100%; height: auto; display: block; overflow: visible; }
.fish__tail {
  transform-origin: 14px 18px;
  animation: tailWag var(--tail-speed, 0.42s) ease-in-out infinite alternate;
}
@keyframes tailWag {
  from { transform: rotate(-16deg); }
  to { transform: rotate(16deg); }
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .reveal, .reveal > *, .bubble, .fish, .fish__tail {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ─── Galerie agrandie ───────────────────────────── */
.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
}

.gallery-item {
  aspect-ratio: 4/3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item--wide { aspect-ratio: 16/9; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(10, 37, 64, 0.45); }

.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(10, 37, 64, 0.85));
  color: var(--foam); font-size: 0.85rem;
}

.gallery-item__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 37, 64, 0.25); color: white;
  transition: background 0.3s;
}
.gallery-item__play svg { width: 48px; height: 48px; opacity: 0.9; }
.gallery-item:hover .gallery-item__play { background: rgba(10, 37, 64, 0.4); }

/* ─── Lightbox ───────────────────────────────────── */
.lightbox__media--hidden { display: none !important; }
.lightbox__media:not(.lightbox__media--hidden) { display: block; }
.lightbox__close svg { width: 32px; height: 32px; color: var(--foam); }
