/* Manini Whales Experience — style premium */

:root{
  --navy-deep: #06202f;
  --navy-900: #071e2b;
  --navy-800: #0b2c40;
  --navy-700: #113a54;
  --teal: #22a6a0;
  --teal-light: #6fd7ce;
  --sand: #e3bd7d;
  --sand-light: #f3ddad;
  --off-white: #f7f5ef;
  --ink: #10262f;
  --muted: #5c7480;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(6, 32, 47, 0.18);
  --shadow-soft: 0 10px 30px rgba(6, 32, 47, 0.10);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
}
h1,h2,h3,h4{
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 0.5em;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.2px;
}
p{ margin: 0 0 1em; color: var(--muted); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
.container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section{ padding: 90px 0; }
.section--tight{ padding: 60px 0; }
@media (max-width: 620px){
  .container{ padding: 0 20px; }
  .section{ padding: 56px 0; }
  .section--tight{ padding: 42px 0; }
}
.section--dark{
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #eaf3f2;
}
.section--dark h2, .section--dark h3{ color: #ffffff; }
.section--dark p{ color: #b9cdd2; }
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 26px; height: 1px;
  background: var(--sand);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn--primary{
  background: linear-gradient(120deg, var(--teal), #1c8b86);
  color: #fff;
  box-shadow: 0 12px 28px rgba(34,166,160,0.35);
}
.btn--primary:hover{ box-shadow: 0 16px 36px rgba(34,166,160,0.45); }
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn--ghost:hover{ background: rgba(255,255,255,0.1); }
.btn--dark{
  background: var(--navy-900);
  color:#fff;
}
.btn--sand{
  background: var(--sand);
  color: var(--navy-900);
}
.btn--outline{
  background: transparent;
  border-color: #dde5e3;
  color: var(--navy-900);
}
.btn--outline:hover{ background: var(--off-white); border-color: var(--teal); }
.btn--block{ width:100%; }

/* Header */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(7,30,43,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-flag{ position:absolute; top:26px; right:26px; z-index:5; }
@media (max-width: 620px){ .page-flag{ top:16px; right:16px; width:40px; height:27px; } }
.footer-flag{ vertical-align:middle; margin-left:4px; }
.local-band{
  height: 8px;
  background-color: #0a2636;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Crect width='12' height='8' fill='%230a2636'/%3E%3Cpath d='M6 0.5 L10.5 7.5 L1.5 7.5 Z' fill='%23e3bd7d'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 12px 8px;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 28px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
  color:#fff;
}
.brand .brand-mark{
  height:40px;
  width:auto;
  display:block;
}
.brand-word{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand-word-main{
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:18.5px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#fff;
}
.brand-word-sub{
  font-family:'Inter', sans-serif;
  font-weight:500;
  font-size:9.5px;
  letter-spacing:3.5px;
  text-transform:uppercase;
  color: var(--sand);
  margin-top:3px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:46px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  color:#dfeceb;
  font-size:19px;
  font-weight:500;
  position:relative;
  padding: 6px 0;
  letter-spacing:0.3px;
}
.nav-links a.active,
.nav-links a:hover{ color: #fff; }
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background: var(--sand);
  border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:20px; }
.lang-switch{ display:flex; align-items:center; gap:5px; font-size:12.5px; font-weight:700; letter-spacing:0.3px; padding-right:20px; border-right:1px solid rgba(255,255,255,0.16); }
.lang-switch a{ color:rgba(255,255,255,0.55); padding:4px 1px; transition: color .15s ease; }
.lang-switch a:hover{ color:#fff; }
.lang-switch a.lang-active{ color:#fff; }
.lang-switch span{ color:rgba(255,255,255,0.3); }
.burger{ display:none; background:none; border:none; color:#fff; font-size:24px; cursor:pointer; padding:10px; margin:-10px; line-height:1; }

/* Sous-menu Activités */
.has-dropdown{ position:relative; }
.dd-caret{
  display:inline-block;
  margin-left:6px;
  width:6px; height:6px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown{
  list-style:none; margin:0; padding:10px;
  position:absolute; top:calc(100% + 14px); left:50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy-900);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  min-width:220px;
  box-shadow: var(--shadow);
  opacity:0; visibility:hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1; visibility:visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a{
  display:block;
  padding:10px 14px;
  border-radius:8px;
  font-size:15.5px;
  white-space:nowrap;
}
.dropdown li a:hover{ background: rgba(255,255,255,0.06); }
.dropdown li a::after{ display:none; }

@media (max-width: 1040px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background: var(--navy-900);
    flex-direction:column;
    align-items:flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    display:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open{ display:flex; width:100%; }
  .burger{ display:block; }
  .nav-cta{ gap:12px; }
  .nav-cta .btn span{ display:none; }
  .lang-switch{ font-size:11.5px; padding-right:12px; }
  .brand .brand-mark{ height:34px; }
  .brand-word-main{ font-size:16px; }
  .has-dropdown{ width:100%; }
  .nav-links a{ padding:10px 0; width:100%; }
  .dropdown{
    position:static; transform:none; opacity:1; visibility:visible;
    background:none; border:none; box-shadow:none; padding:2px 0 4px 14px;
    min-width:0; display:block;
  }
  .dropdown li a{ padding:10px 0; color:#a9c2c8; }
}
@media (max-width: 400px){
  .nav{ padding: 16px 18px; }
}

/* Hero */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
  background:
    radial-gradient(1100px 600px at 85% 10%, rgba(34,166,160,0.25), transparent 60%),
    linear-gradient(180deg, rgba(6,20,29,0.55), rgba(6,20,29,0.85)),
    url('hero-photo.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: url('whale-motif.svg') no-repeat bottom right;
  background-size: 620px;
  opacity: 0.16;
  pointer-events:none;
}
.hero-inner{
  position:relative; z-index:2;
  max-width: 700px;
  padding: 140px 28px 80px;
}
.hero-greeting{
  display:inline-block;
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-size: 19px;
  color: var(--sand);
  margin-bottom: 14px;
  letter-spacing:0.3px;
}
.hero h1{
  color:#fff;
  font-size: clamp(40px, 6vw, 72px);
  line-height:1.05;
  letter-spacing:-0.3px;
  margin-bottom:22px;
}
.hero p.lead{
  color:#cfe4e2;
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-stats{
  display:flex; gap:40px;
  margin-top: 60px;
  flex-wrap:wrap;
}
.hero-stats div strong{
  display:block; font-family:'Playfair Display',serif;
  font-size: 26px; color:#fff;
}
.hero-stats div span{ font-size:13px; color:#9fc0be; letter-spacing:0.5px; }
@media (max-width: 480px){
  .hero-inner{ padding: 118px 20px 60px; }
  .hero-stats{ gap:26px; margin-top:40px; }
}

/* Page hero (interior pages) */
.page-hero{
  position:relative;
  padding: 150px 0 70px;
  color:#fff;
  background:
    linear-gradient(160deg, rgba(10,42,61,0.88), rgba(14,59,82,0.90)),
    url('hero-photo.jpg');
  background-size: cover;
  background-position: center 35%;
  text-align:center;
}
.page-hero h1{ color:#fff; margin-bottom: 10px; }
.page-hero p{ color:#b9cdd2; max-width:560px; margin:0 auto; }
.breadcrumb{ font-size:13px; color:var(--teal-light); letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; }
@media (max-width: 620px){ .page-hero{ padding: 118px 0 46px; } }

/* Grande photo hero avec texte en overlay (pages activité) */
.media-hero{
  position:relative;
  min-height: 580px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}
.media-hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position: 78% center;
  filter: saturate(1.06) contrast(1.03);
}
.media-hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(7,30,43,0.94) 0%, rgba(7,30,43,0.82) 26%, rgba(7,30,43,0.4) 48%, rgba(7,30,43,0.08) 66%, transparent 80%);
}
.media-hero .container{ position:relative; z-index:2; }
.media-hero-panel{ max-width:540px; }
.media-hero-panel .breadcrumb{ color: var(--teal-light); }
.media-hero-panel h1{ color:#fff; margin-bottom:14px; }
.media-hero-panel p{ color: rgba(255,255,255,0.88); font-size:16px; }
@media (max-width: 880px){
  .media-hero{ min-height:480px; align-items:flex-end; }
  .media-hero-bg{ background-position:center; }
  .media-hero-scrim{ background: linear-gradient(0deg, rgba(7,30,43,0.95) 8%, rgba(7,30,43,0.75) 45%, rgba(7,30,43,0.15) 80%); }
  .media-hero .container{ padding-bottom:40px; }
  .media-hero-panel{ max-width:none; }
}

/* Trust bar */
.trust-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,32,47,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.trust-card .icon{
  width:46px;height:46px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display:flex;align-items:center;justify-content:center;
  color:#fff; font-size:20px;
  margin-bottom: 18px;
}
.trust-card .icon svg{ width:22px; height:22px; }
.trust-card h3{ font-size:18px; margin-bottom:8px; }
.trust-card p{ font-size:14.5px; margin:0; }

@media (max-width: 880px){ .trust-grid{ grid-template-columns:1fr; } }
.trust-grid--4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .trust-grid--4{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .trust-grid--4{ grid-template-columns: 1fr; } }

/* Split feature */
.split{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items:center;
}
.split-media{
  border-radius: 20px;
  overflow:hidden;
  min-height: 420px;
  background: linear-gradient(150deg, #0e3b52, #1b5c73 60%, var(--teal));
  position:relative;
  box-shadow: var(--shadow);
}
.split-media--photo{
  background:
    linear-gradient(200deg, rgba(6,32,47,0.15), rgba(6,32,47,0.55)),
    url('whale-photo-1.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.03);
}
.split-media .tag{
  position:absolute; left:22px; bottom:22px;
  background: rgba(7,30,43,0.55);
  color:#fff; padding:10px 16px; border-radius:999px;
  font-size:12.5px; letter-spacing:1px; text-transform:uppercase;
  backdrop-filter: blur(6px);
}
.feature-list{ list-style:none; margin: 26px 0 0; padding:0; display:grid; gap:14px; }
.feature-list li{
  display:flex; gap:12px; align-items:flex-start;
  font-size:15px; color: var(--ink);
}
.feature-list li .dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--teal); margin-top:8px; flex:none;
}
@media (max-width: 880px){ .split{ grid-template-columns:1fr; } .split-media{ min-height:280px; } }

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.price-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,32,47,0.06);
  text-align:center;
  position:relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured{
  border: 2px solid var(--teal);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.price-card .badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: var(--sand); color:var(--navy-900);
  font-size:11.5px; font-weight:700; letter-spacing:1px;
  padding:6px 14px; border-radius:999px; text-transform:uppercase;
}
.price-card h3{ font-size:16px; text-transform:uppercase; letter-spacing:1px; color:var(--muted); margin-bottom:6px; }
.price-card .amount{
  font-family:'Playfair Display', serif;
  font-size: 42px; color: var(--navy-900);
  margin: 10px 0 4px;
}
.price-card .amount sup{ font-size:16px; font-family:'Inter',sans-serif; }
.price-card .desc{ font-size:13.5px; margin-bottom:22px; }

@media (max-width: 880px){ .pricing-grid{ grid-template-columns:1fr; } .price-card.featured{ transform:none; } }
.pricing-grid--2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px){ .pricing-grid--2{ grid-template-columns: 1fr; } }

/* CTA band */
.cta-band{
  background: linear-gradient(120deg, var(--teal), #146b67);
  color:#fff;
  border-radius: 22px;
  padding: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom:6px; }
.cta-band p{ color: rgba(255,255,255,0.85); margin:0; }
@media (max-width: 620px){ .cta-band{ padding: 34px 26px; border-radius:18px; } }

/* Testimonials */
.testimonial-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap:24px;
}
.testimonial{
  background:#fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-soft);
  border:1px solid rgba(6,32,47,0.05);
}
.testimonial .stars{ color: var(--sand); letter-spacing:2px; margin-bottom:12px; }
.testimonial p{ font-size:14.5px; font-style:italic; }
.testimonial .who{ font-size:13px; color: var(--navy-900); font-weight:600; font-style:normal; margin-top:14px; }
@media (max-width: 880px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid div{
  aspect-ratio: 1/1;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy-700), var(--teal));
  opacity:0.9;
}
.gallery-grid div:nth-child(2n){ background: linear-gradient(150deg, var(--teal), var(--sand)); }
.gallery-grid div:nth-child(3n){ background: linear-gradient(150deg, #0e3b52, var(--navy-900)); }
@media (max-width: 880px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }

/* Forms */
.form-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,32,47,0.06);
}
@media (max-width: 620px){ .form-card{ padding: 22px; } }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px){ .form-grid{ grid-template-columns: 1fr; gap:16px; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1/-1; }
.field label{ font-size:13px; font-weight:600; color: var(--navy-900); }
.field input, .field select, .field textarea{
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #d9e2e0;
  font-family:inherit;
  font-size:14.5px;
  background:#fbfbf9;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: 2px solid var(--teal-light);
  border-color: var(--teal);
}
/* Calendrier de réservation */
.booking-steps{
  display:flex; gap:10px; margin-bottom:26px; flex-wrap:wrap;
}
.booking-steps span{
  font-size:12.5px; font-weight:600; color: var(--muted);
  background:#fff; border:1px solid #e0e7e5; padding:7px 14px; border-radius:999px;
}
.booking-steps span.done{ color:#fff; background: var(--teal); border-color: var(--teal); }

.calendar{
  background:#fff;
  border-radius: var(--radius);
  padding: 26px 26px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,32,47,0.06);
  margin-bottom: 22px;
}
@media (max-width: 480px){
  .calendar{ padding: 16px 12px 14px; }
  .cal-weekdays, .cal-grid{ gap:4px; }
  .cal-day{ font-size:12.5px; border-radius:8px; }
  .cal-weekdays div{ font-size:10px; }
}
.cal-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 18px;
}
.cal-header h4{ margin:0; font-family:'Inter',sans-serif; font-weight:700; color: var(--navy-900); font-size:16px; text-transform:capitalize; }
.cal-nav{
  display:flex; gap:8px;
}
.cal-nav button{
  width:34px; height:34px; border-radius:50%;
  border:1px solid #dfe7e5; background:#fff; cursor:pointer;
  font-size:15px; color: var(--navy-900);
  display:flex; align-items:center; justify-content:center;
}
.cal-nav button:disabled{ opacity:0.3; cursor:not-allowed; }
.cal-nav button:not(:disabled):hover{ background: var(--off-white); }
.cal-weekdays, .cal-grid{
  display:grid; grid-template-columns: repeat(7, 1fr); gap:6px;
}
.cal-weekdays div{
  text-align:center; font-size:11.5px; font-weight:700; color: var(--muted);
  text-transform:uppercase; letter-spacing:0.5px; padding-bottom:8px;
}
.cal-day{
  aspect-ratio: 1/1;
  display:flex; align-items:center; justify-content:center;
  border-radius: 10px;
  font-size: 14px;
  font-weight:600;
  color: var(--navy-900);
  background: var(--off-white);
  cursor:pointer;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease;
}
.cal-day:hover:not(.disabled):not(.selected){ background:#e3f2f0; }
.cal-day.empty{ background:transparent; cursor:default; }
.cal-day.disabled{ background:transparent; color:#c7d2d0; cursor:not-allowed; }
.cal-day.selected{ background: var(--teal); color:#fff; box-shadow: 0 6px 16px rgba(34,166,160,0.4); }
.cal-day.today:not(.selected){ border-color: var(--sand); }
.cal-legend{
  display:flex; gap:18px; margin-top:16px; font-size:12px; color:var(--muted); flex-wrap:wrap;
}
.cal-legend span{ display:inline-flex; align-items:center; gap:6px; }
.cal-legend i{ width:10px; height:10px; border-radius:3px; display:inline-block; }
.cal-legend i.leg-season{ background: var(--off-white); border:1px solid #dfe7e5; }
.cal-legend i.leg-selected{ background: var(--teal); }
.cal-legend i.leg-off{ background:transparent; border:1px solid #e6ecea; }

.slot-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-bottom:22px;
}
.slot-card{
  background:#fff;
  border: 2px solid #e2e9e7;
  border-radius: 12px;
  padding: 18px 20px;
  cursor:pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.slot-card.disabled{ opacity:0.5; cursor:not-allowed; pointer-events:none; }
.slot-card:hover:not(.disabled){ border-color: var(--teal-light); }
.slot-card.selected{ border-color: var(--teal); box-shadow: 0 8px 20px rgba(34,166,160,0.2); background:#f2fbfa; }
.slot-card .slot-label{ font-weight:700; font-size:15px; color: var(--navy-900); margin-bottom:4px; }
.slot-card .slot-time{ font-size:13.5px; color: var(--muted); }
@media (max-width: 520px){ .slot-grid{ grid-template-columns:1fr; } }

.summary-box{
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px dashed #cfe0dd;
}
.summary-row{ display:flex; justify-content:space-between; font-size:14.5px; padding:6px 0; }
.summary-row.total{ font-weight:700; font-size:17px; color: var(--navy-900); border-top:1px solid #dde7e5; margin-top:6px; padding-top:12px; }
.preview-note{
  background: #fff6e6;
  border: 1px solid var(--sand);
  color: #6b4f16;
  font-size: 13.5px;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 26px;
}

/* Footer */
.site-footer{
  background: var(--navy-900);
  color: #b9cdd2;
  padding: 70px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4{ color:#fff; font-size:15px; margin-bottom:16px; font-family:'Inter',sans-serif; letter-spacing:0.5px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; font-size:14px; }
.footer-grid a:hover{ color:#fff; }
.footer-bottom{
  padding-top: 24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color:#7f9ba1;
}
.social-row{ display:flex; gap:12px; margin-top:14px; }
.social-row a{
  width:44px;height:44px; border-radius:50%;
  background: var(--navy-900);
  display:flex; align-items:center; justify-content:center;
  transition: background .18s ease, transform .18s ease;
}
.site-footer .social-row a{ background: rgba(255,255,255,0.08); }
.social-row a svg{ width:18px; height:18px; fill:#dfeceb; }
.social-row a:hover{ background: var(--teal); transform: translateY(-2px); }
.social-row a.social-soon{ opacity:0.4; cursor:default; }
.social-row a.social-soon:hover{ background: var(--navy-900); transform:none; }
.site-footer .social-row a.social-soon:hover{ background: rgba(255,255,255,0.08); }
.social-row a:hover svg{ fill:#fff; }

@media (max-width: 880px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; gap:32px; } .footer-bottom{ flex-direction:column; } }

/* Séparateurs vagues */
.wave-divider{
  display:block; width:100%; line-height:0; margin:-2px 0;
}
.wave-divider svg{ width:100%; height:60px; display:block; }

/* Révélation au scroll */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* Étapes de réservation (accueil) */
.steps-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:30px;
  counter-reset: step;
  position:relative;
}
.steps-grid::before{
  content:"";
  position:absolute; top:26px; left:12%; right:12%; height:1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 8px, transparent 8px 16px);
}
.step-card{ position:relative; text-align:center; padding:0 10px; }
.step-num{
  width:52px; height:52px; border-radius:50%;
  background: linear-gradient(135deg, var(--teal), var(--sand));
  color:#08222f; font-family:'Playfair Display',serif; font-weight:700; font-size:20px;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 18px; position:relative; z-index:2;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.step-card h3{ color:#fff; font-size:17px; margin-bottom:8px; }
.step-card p{ color:#aecdca; font-size:14px; }
@media (max-width:880px){ .steps-grid{ grid-template-columns:1fr; gap:44px; } .steps-grid::before{ display:none; } }

.steps-grid--4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width:980px){ .steps-grid--4{ grid-template-columns: repeat(2,1fr); gap:44px 30px; } .steps-grid--4::before{ display:none; } }
@media (max-width:560px){ .steps-grid--4{ grid-template-columns: 1fr; } }

/* Encadrés règle d'or / bon à savoir (pages activité) */
.rule-box{
  background: var(--off-white);
  border: 1px solid rgba(10,38,54,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  padding: 30px 32px;
  margin: 8px 0 0;
}
.rule-box h3{ margin-bottom: 10px; }
@media (max-width: 620px){ .rule-box{ padding: 22px 20px; } }
.rule-box .warn{
  display:block; margin-top:18px; font-size:13.5px; color:#8a5a1f;
  background:#fbf1de; border:1px solid #eddcb8; padding:10px 14px; border-radius:8px;
}
.diren-list{
  display:grid; grid-template-columns: repeat(2,1fr);
  gap: 11px 30px; margin: 18px 0 0; padding:0; list-style:none;
}
.diren-list li{
  font-size: 14px; color: var(--ink); padding-left: 20px; position:relative;
}
.diren-list li::before{
  content:""; position:absolute; left:0; top:7px;
  width:7px; height:7px; border-radius:50%; background: var(--teal);
}
@media (max-width:620px){ .diren-list{ grid-template-columns:1fr; } }

/* Citation mise en avant */
.highlight-quote{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-size: 22px;
  line-height:1.5;
  color: var(--navy-900);
  border-left: 4px solid var(--sand);
  padding: 18px 28px;
  margin: 32px 0;
  background: var(--off-white);
  border-radius: 0 14px 14px 0;
}
@media (max-width:620px){ .highlight-quote{ font-size:18.5px; padding:16px 20px; } }

/* Inclus / à prévoir en 2 colonnes */
.include-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:24px; margin-top:8px;
}
@media (max-width:760px){ .include-grid{ grid-template-columns:1fr; } }

/* Bandeau de confiance */
.badge-strip{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px;
  padding: 20px 0;
}
.badge-strip span{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:600; color: var(--navy-900);
  background:#fff; border:1px solid #e3e9e7; padding:9px 16px;
  border-radius:999px; box-shadow: var(--shadow-soft);
}

/* FAQ */
.faq-item{
  background:#fff; border:1px solid #e6ece9; border-radius:12px;
  padding: 6px 22px; margin-bottom:12px;
}
.faq-item summary{
  cursor:pointer; list-style:none; padding:16px 0;
  font-weight:600; color: var(--navy-900); font-size:15.5px;
  display:flex; justify-content:space-between; align-items:center;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:22px; color: var(--teal); flex:none; transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ padding-bottom:18px; margin:0; font-size:14.5px; }

/* Carte / localisation */
.map-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,32,47,0.08);
  display:grid;
  grid-template-columns: 1.3fr 1fr;
}
.map-frame{ width:100%; height:100%; min-height:360px; border:0; display:block; filter:grayscale(15%); }
.map-info{
  background: var(--navy-900);
  color:#dfeceb;
  padding: 38px 34px;
  display:flex; flex-direction:column; justify-content:center;
}
.map-info h3{ color:#fff; margin-bottom:10px; }
.map-info p{ color:#aecdca; font-size:14.5px; }
.map-pin-row{ display:flex; gap:12px; align-items:flex-start; margin-top:18px; }
.map-pin-row svg{ flex:none; width:20px; height:20px; fill: var(--sand); margin-top:2px; }
@media (max-width: 880px){ .map-card{ grid-template-columns:1fr; } .map-frame{ min-height:280px; } }

/* CTA mobile flottant */
.mobile-cta{
  display:none;
  position: fixed; left:0; right:0; bottom:0; z-index:60;
  padding: 12px 18px;
  background: rgba(7,30,43,0.96);
  backdrop-filter: blur(8px);
  border-top:1px solid rgba(255,255,255,0.08);
}
.mobile-cta a{ width:100%; }
@media (max-width: 880px){
  .mobile-cta{ display:block; }
  body{ padding-bottom: 74px; }
}

/* Retour en haut */
.back-to-top{
  position: fixed; right:24px; bottom:24px; z-index:55;
  width:46px; height:46px; border-radius:50%;
  background: var(--navy-900); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  border:none; cursor:pointer; font-size:18px;
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
@media (max-width: 880px){ .back-to-top{ bottom:90px; } }

/* Drapeau de Rimatara (discret) */
.rimatara-flag{
  display:inline-block;
  border-radius:3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  flex:none;
}

/* Bouton WhatsApp flottant */
.whatsapp-float{
  position: fixed; left:24px; bottom:24px; z-index:56;
  width:52px; height:52px; border-radius:50%;
  background:#25d366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{ transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.25); }
.whatsapp-float svg{ width:26px; height:26px; fill:#fff; }
@media (max-width: 880px){ .whatsapp-float{ left:18px; bottom:90px; width:48px; height:48px; } .whatsapp-float svg{ width:23px; height:23px; } }

/* Bandeau hors saison */
.season-banner{
  display:none;
  background: #fff6e6;
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 20px 26px;
  gap:16px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.season-banner.show{ display:flex; }
.season-banner-text{ font-size:14.5px; color:#6b4f16; flex:1; min-width:240px; margin:0; }
.season-banner-text strong{ color:#4a3610; }
.season-banner-form{ display:flex; gap:10px; flex-wrap:wrap; margin:0; }
.season-banner-form input{
  padding: 11px 14px; border-radius:10px; border:1px solid #e7d3a8;
  font-family:inherit; font-size:14px; min-width:210px; background:#fffdf7;
}
.season-notify-msg{ font-size:14px; color:#146b67; margin:0; }
@media (max-width:620px){
  .season-banner{ padding:18px 20px; }
  .season-banner-form{ width:100%; }
  .season-banner-form input{ flex:1; min-width:0; }
}

/* Citation éditoriale */
.pull-quote{
  max-width: 780px; margin: 0 auto; text-align:center;
  position:relative; padding: 10px 20px;
}
.pull-quote .quote-mark{
  font-family:'Playfair Display', serif; font-size:60px; color: var(--sand);
  line-height:1; display:block; margin-bottom:6px;
}
.pull-quote p{
  font-family:'Playfair Display', serif; font-style:italic;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--navy-900);
  line-height:1.5; margin:0;
}
.pull-quote .quote-rule{
  width:60px; height:2px; background: var(--sand); margin:26px auto 0;
}

.local-note{
  max-width: 860px; margin: 46px auto 0;
  background: rgba(227,189,125,0.14);
  border: 1px solid rgba(227,189,125,0.4);
  border-radius: var(--radius);
  padding: 36px 42px;
  display:flex; gap:26px; align-items:center;
}
.local-note-icon{
  flex-shrink:0;
  border-radius:50%; width:92px; height:92px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid #fff;
}
.local-note-icon img{ width:100%; height:100%; object-fit:cover; display:block; }
.local-note h3{ font-size:19px; margin-bottom:8px; color: var(--navy-900); }
.local-note p{ font-size:15.5px; color: var(--ink); margin:0; }
@media (max-width:620px){ .local-note{ flex-direction:column; align-items:flex-start; padding:26px; } .local-note-icon{ width:80px; height:80px; } }

/* Aperçu activité (bandeau éditorial plein cadre) */
.activity-teaser{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  min-height: 420px;
  display:flex; align-items:flex-end;
  box-shadow: var(--shadow);
}
.activity-teaser .teaser-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.activity-teaser .teaser-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(6,20,29,0.92) 0%, rgba(6,20,29,0.45) 55%, rgba(6,20,29,0.05) 100%);
}
.activity-teaser .teaser-content{
  position:relative; z-index:2; padding: 44px 48px; color:#fff; max-width:640px;
}
.activity-teaser .teaser-content h2{ color:#fff; }
.activity-teaser .teaser-content p{ color:#d7e6e3; }
.activity-teaser .teaser-tag{
  display:inline-block; background: var(--sand); color: var(--navy-900);
  font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  padding:6px 14px; border-radius:999px; margin-bottom:16px;
}
@media (max-width:880px){ .activity-teaser .teaser-content{ padding:32px 26px; } }

/* Bloc identité / valeurs entreprise */
.values-row{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:34px;
}
.value-item{ text-align:center; }
.value-item .value-num{
  font-family:'Playfair Display', serif; font-size:15px; color: var(--sand);
  letter-spacing:2px; margin-bottom:10px; display:block;
}
.value-item h3{ font-size:18px; margin-bottom:10px; }
.value-item p{ font-size:14.5px; }
@media (max-width:880px){ .values-row{ grid-template-columns:1fr; gap:36px; } }

/* Grille d'activités */
.activities-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.activities-grid--2{
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}
.activity-card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6,32,47,0.06);
  display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.activity-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.activity-card .ac-media{
  height: 230px;
  background-size: cover; background-position:center;
  position:relative;
  filter: saturate(1.06) contrast(1.03);
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.activity-card:hover .ac-media{
  transform: scale(1.06);
}
.activity-card .ac-media.ac-media--soon{
  position:relative;
}
.activity-card .ac-media.ac-media--soon::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(150deg, rgba(11,31,46,0.55), rgba(11,31,46,0.75));
}
.activity-card .ac-badge{
  position:absolute; top:14px; left:14px; z-index:1;
  background: var(--sand); color:var(--navy-900);
  font-size:11px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
}
.activity-card .ac-badge.ac-badge--soon{
  background: rgba(255,255,255,0.92); color: var(--navy-900);
}
.activity-card .ac-body{
  padding: 24px 24px 26px;
  display:flex; flex-direction:column; flex:1;
}
.activity-card h3{ font-size:18px; margin-bottom:8px; }
.activity-card p{ font-size:14px; margin-bottom:18px; flex:1; }
.activity-card .ac-price{
  font-size:13px; font-weight:700; color: var(--teal); margin-bottom:14px;
}
.activity-card .ac-price.ac-price--muted{ color: var(--muted); }
.activity-card .btn{ width:100%; }
@media (max-width: 980px){ .activities-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .activities-grid{ grid-template-columns: 1fr; } .activities-grid--2{ grid-template-columns: 1fr; } }

.branch-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap:26px;
}
@media (max-width: 980px){ .branch-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .branch-grid{ grid-template-columns: 1fr; } }
.branch-grid .activity-card .ac-media{ height:280px; }
.branch-grid .activity-card .ac-body{ padding:22px 24px 26px; }
.branch-grid .activity-card h3{ font-size:17.5px; font-weight:700; margin-bottom:7px; }
.eyebrow--gold{ color: #8a5a1f; }
.section-divider{
  position:relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  padding: 26px 0;
  text-align:center;
  overflow:hidden;
}
.section-divider::before{
  content:"";
  position:absolute; top:50%; left:50%;
  width:360px; height:360px;
  transform: translate(-50%,-50%);
  background: url('whale-motif.svg') no-repeat center;
  background-size: 360px;
  opacity: 0.07;
  pointer-events:none;
}
.section-divider-label{
  position:relative; z-index:1;
  display:inline-flex; align-items:center; gap:14px;
  font-family:'Playfair Display', serif;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:14px;
  color: var(--sand);
}
.section-divider-label::before, .section-divider-label::after{
  content:""; display:block; width:34px; height:1px;
  background: rgba(227,189,125,0.5);
}
@media (max-width:620px){
  .section-divider{ padding:20px 0; }
  .section-divider-label{ gap:10px; font-size:12.5px; letter-spacing:3px; }
  .section-divider-label::before, .section-divider-label::after{ width:20px; }
}
.branch-grid .activity-card p{ font-size:14px; margin-bottom:0; }
@media (max-width: 980px){ .branch-grid .activity-card .ac-media{ height:240px; } }
@media (max-width: 620px){ .branch-grid .activity-card .ac-media{ height:260px; } }
.ac-media--placeholder{
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(150deg, var(--navy-900), #123a4d);
}
.ac-media--placeholder svg{ width:38px; height:38px; opacity:0.85; }

/* Utility */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.max-w{ max-width: 620px; margin:0 auto; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
@media (max-width:880px){ .grid-2{ grid-template-columns:1fr; } }
