/* // CORRIGÉ PAR CODEX – Pelican + orthographe */
:root {
  --shell-deep-blue: #0a1f44;
  --shell-blue-soft: #15315f;
  --shell-gold: #d4af37;
  --shell-gold-light: #ebca61;
  --shell-white: #ffffff;
  --shell-ink: #12233f;
  --shell-copy: #5a6780;
  --shell-border: rgba(15, 30, 60, 0.08);
  --shell-shadow: 0 24px 60px rgba(10, 31, 68, 0.14);
  --shell-radius: 28px;
}

body.has-pelican-shell {
  min-height: 100vh;
}

.pelican-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.06);
  font-family: 'Outfit', sans-serif;
}

.pelican-shell-bar,
.pelican-shell-origin {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.pelican-shell-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 14px 0 12px;
}

.pelican-shell-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--shell-deep-blue);
}

.pelican-shell-brand img {
  height: 42px;
  width: auto;
}

.pelican-shell-brand-wordmark {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.pelican-shell-brand-dot {
  color: var(--shell-gold);
}

.pelican-shell-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  overflow: visible;
  flex-wrap: nowrap;
  justify-self: center;
  padding-left: 0;
}

.pelican-shell-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
  min-width: max-content;
  flex-wrap: nowrap;
}

.pelican-shell-links::-webkit-scrollbar,
.pelican-shell-menu::-webkit-scrollbar {
  height: 6px;
}

.pelican-shell-links::-webkit-scrollbar-thumb,
.pelican-shell-menu::-webkit-scrollbar-thumb {
  background: rgba(10, 31, 68, 0.16);
  border-radius: 999px;
}

.pelican-shell-links::-webkit-scrollbar-track,
.pelican-shell-menu::-webkit-scrollbar-track {
  background: transparent;
}

.pelican-shell-item {
  position: relative;
  flex: 0 0 auto;
}

.pelican-shell-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 14px;
  pointer-events: none;
}

.pelican-shell-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 0;
  border-radius: 999px;
  text-decoration: none;
  color: var(--shell-ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
  font-family: 'Outfit', sans-serif;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pelican-shell-link.is-trigger {
  gap: 8px;
}

.pelican-shell-link.is-secondary {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 800;
  padding-left: 0;
  padding-right: 0;
}

.pelican-shell-link.is-primary-cluster {
  padding-left: 0;
  padding-right: 0;
}

.pelican-shell-link.is-destinations-spotlight {
  gap: 0;
  color: var(--shell-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  padding: 10px 0;
  margin-left: 0;
  margin-right: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pelican-shell-link.is-festival-spotlight {
  gap: 8px;
  color: #b8860b;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0.07) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  margin-left: 0;
}

.pelican-shell-link.is-destinations-spotlight:hover,
.pelican-shell-link.is-destinations-spotlight:focus-visible,
.pelican-shell-link.is-destinations-spotlight.is-active {
  color: var(--shell-deep-blue);
  border-color: transparent;
  background: rgba(10, 31, 68, 0.06);
}

.pelican-shell-actions .pelican-language-slot {
  display: none;
}

.pelican-shell-item-language .pelican-language-slot {
  margin: 0;
}

.pelican-shell-link.is-festival-spotlight:hover,
.pelican-shell-link.is-festival-spotlight:focus-visible,
.pelican-shell-link.is-festival-spotlight.is-active {
  color: #b8860b;
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24) 0%, rgba(212, 175, 55, 0.11) 100%);
}

.pelican-shell-star {
  display: inline-flex;
  color: var(--shell-gold);
  font-size: 11px;
}

.pelican-shell-destination-star {
  display: none;
}

.pelican-shell-link.is-trigger i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.pelican-shell-link:hover,
.pelican-shell-link:focus-visible {
  background: rgba(10, 31, 68, 0.06);
  color: var(--shell-deep-blue);
  transform: translateY(-1px);
}

.pelican-shell-link.is-active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
  color: var(--shell-deep-blue);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.pelican-shell-item:hover .pelican-shell-link.is-trigger i,
.pelican-shell-item:focus-within .pelican-shell-link.is-trigger i {
  transform: rotate(180deg);
}

.pelican-shell-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 8;
  display: grid;
  gap: 4px;
  min-width: 268px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(10, 31, 68, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(20px);
}

.pelican-shell-item:hover .pelican-shell-dropdown,
.pelican-shell-item:focus-within .pelican-shell-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pelican-shell-item-dropdown {
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.pelican-shell-item-dropdown > .pelican-shell-link.is-trigger {
  position: relative;
  z-index: 2;
}

.pelican-shell-item:hover,
.pelican-shell-item:focus-within {
  z-index: 18;
}

.pelican-shell-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 13px;
  border-radius: 16px;
  color: var(--shell-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.pelican-shell-dropdown-item i {
  width: 16px;
  color: var(--shell-gold);
  text-align: center;
}

.pelican-shell-dropdown-item:hover,
.pelican-shell-dropdown-item:focus-visible {
  background: rgba(10, 31, 68, 0.05);
  color: var(--shell-deep-blue);
  transform: translateX(2px);
}

.pelican-shell-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pelican-shell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--shell-gold) 0%, var(--shell-gold-light) 100%);
  color: var(--shell-deep-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.pelican-shell-cta:hover,
.pelican-shell-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(212, 175, 55, 0.32);
}

.pelican-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shell-gold) 0%, var(--shell-gold-light) 100%);
  color: var(--shell-deep-blue);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.pelican-whatsapp-float:hover,
.pelican-whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(212, 175, 55, 0.36);
  filter: saturate(1.03);
}

.pelican-whatsapp-float-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  font-size: 28px;
  flex: 0 0 auto;
}

.pelican-whatsapp-float-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.pelican-whatsapp-float-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.pelican-whatsapp-float-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--shell-deep-blue);
  letter-spacing: -0.01em;
}

.pelican-shell-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 14px;
  background: rgba(10, 31, 68, 0.03);
  color: var(--shell-deep-blue);
  cursor: pointer;
}

.pelican-shell-origin {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px;
  color: #72809a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pelican-shell-origin-label {
  color: var(--shell-deep-blue);
  font-weight: 800;
}

.pelican-shell-origin-trail {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pelican-shell-origin-trail a {
  color: inherit;
  text-decoration: none;
}

.pelican-shell-origin-trail a:hover,
.pelican-shell-origin-trail a:focus-visible {
  color: var(--shell-deep-blue);
}

.pelican-shell-origin-current {
  color: var(--shell-deep-blue);
  font-weight: 800;
}

.pelican-shell-mobile {
  display: none;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(10, 31, 68, 0.96);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shell-shadow);
}

.pelican-shell-mobile.is-open {
  display: grid;
  gap: 10px;
}

.pelican-shell-mobile a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.pelican-shell-mobile-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.pelican-shell-mobile-trigger,
.pelican-shell-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.pelican-shell-mobile-trigger.is-secondary,
.pelican-shell-mobile-link.is-secondary {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.pelican-shell-mobile-trigger.is-festival-spotlight,
.pelican-shell-mobile-link.is-festival-spotlight {
  justify-content: center;
  gap: 10px;
  color: var(--shell-gold-light);
  font-weight: 800;
  border: 1px solid rgba(240, 213, 127, 0.26);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.pelican-shell-mobile-trigger.is-destinations-spotlight,
.pelican-shell-mobile-link.is-destinations-spotlight {
  justify-content: center;
  gap: 10px;
  color: var(--shell-gold-light);
  font-weight: 800;
  border: 1px solid rgba(240, 213, 127, 0.24);
  background: linear-gradient(135deg, rgba(232, 201, 90, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.pelican-shell-mobile-trigger i {
  font-size: 12px;
  transition: transform 0.22s ease;
}

.pelican-shell-mobile-trigger.is-active,
.pelican-shell-mobile-link.is-active,
.pelican-shell-mobile-trigger:hover,
.pelican-shell-mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pelican-shell-mobile-item.is-expanded .pelican-shell-mobile-trigger i {
  transform: rotate(180deg);
}

.pelican-shell-mobile-submenu {
  display: grid;
  gap: 4px;
  max-height: 0;
  padding: 0 10px;
  overflow: hidden;
  transition: max-height 0.26s ease, padding-bottom 0.26s ease;
}

.pelican-shell-mobile-item.is-expanded .pelican-shell-mobile-submenu {
  max-height: 520px;
  padding-bottom: 10px;
}

.pelican-shell-mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.pelican-shell-mobile-submenu a i {
  width: 16px;
  color: var(--shell-gold-light);
  text-align: center;
}

.pelican-shell-mobile-submenu a:hover,
.pelican-shell-mobile-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.pelican-shell-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--shell-gold) 0%, var(--shell-gold-light) 100%);
  color: var(--shell-deep-blue) !important;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 720px) {
  .pelican-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .pelican-whatsapp-float-icon {
    font-size: 25px;
  }
}

@media (max-width: 520px) {
  .pelican-whatsapp-float-copy {
    display: none;
  }
}

.pelican-shell-chips {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pelican-shell-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
}

.pelican-shell-chip i {
  color: var(--shell-gold-light);
}

body.has-pelican-shell[data-template="activity"] .calorie-hero {
  display: inline-grid;
  gap: 6px;
  min-width: min(100%, 290px);
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(232, 201, 90, 0.34);
  box-shadow: 0 20px 42px rgba(5, 14, 28, 0.16);
  backdrop-filter: blur(14px);
}

body.has-pelican-shell[data-template="activity"] .calorie-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

body.has-pelican-shell[data-template="activity"] .calorie-hero-value {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #ffffff;
}

body.has-pelican-shell[data-template="activity"] .calorie-hero-note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

body.has-pelican-shell[data-template="activity"] .calorie-hero.is-light {
  background: linear-gradient(135deg, rgba(232, 201, 90, 0.16) 0%, rgba(10, 31, 68, 0.04) 100%);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 18px 40px rgba(10, 31, 68, 0.1);
}

body.has-pelican-shell[data-template="activity"] .calorie-hero.is-light .calorie-hero-label {
  color: #8d7751;
}

body.has-pelican-shell[data-template="activity"] .calorie-hero.is-light .calorie-hero-value {
  color: var(--shell-deep-blue);
}

body.has-pelican-shell[data-template="activity"] .calorie-hero.is-light .calorie-hero-note {
  color: #5e6e88;
}

body.has-pelican-shell[data-template="activity"] .hero-cover img,
body.has-pelican-shell[data-template="activity"] .gallery img,
body.has-pelican-shell[data-template="activity"] .media-card img,
body.has-pelican-shell[data-template="activity"] .activity-media-card img {
  cursor: zoom-in;
}

body.has-pelican-shell[data-template="activity"] .activity-media-block {
  margin-bottom: 18px;
}

body.has-pelican-shell[data-template="activity"] .activity-media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

body.has-pelican-shell[data-template="activity"] .activity-media-head strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f1f6fb;
}

body.has-pelican-shell[data-template="activity"] .activity-media-head span {
  font-size: 13px;
  line-height: 1.7;
  color: #9eb0c5;
}

body.has-pelican-shell[data-template="activity"] .activity-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.has-pelican-shell[data-template="activity"] .activity-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 22, 38, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

body.has-pelican-shell[data-template="activity"] .activity-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

body.has-pelican-shell[data-template="activity"] .activity-media-card:hover img {
  transform: scale(1.03);
}

body.has-pelican-shell[data-template="activity"] .activity-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 20, 0.02) 0%, rgba(5, 12, 20, 0.18) 42%, rgba(5, 12, 20, 0.78) 100%);
  pointer-events: none;
}

body.has-pelican-shell[data-template="activity"] .activity-media-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #f7fbff;
}

.activity-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 12, 22, 0.86);
  backdrop-filter: blur(12px);
}

.activity-lightbox.is-active {
  display: flex;
}

.activity-lightbox-dialog {
  position: relative;
  width: min(1180px, 100%);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(7, 18, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}

.activity-lightbox-media {
  display: block;
  width: 100%;
  max-height: min(78vh, 920px);
  object-fit: contain;
  background: #050c14;
}

.activity-lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px 20px;
}

.activity-lightbox-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
  color: #f7fbff;
}

.activity-lightbox-copy span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #9eb0c5;
}

.activity-lightbox-actions {
  display: flex;
  gap: 10px;
}

.activity-lightbox-close,
.activity-lightbox-nav {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

body.has-pelican-shell[data-page] .page-header,
body.has-pelican-shell[data-page] .page-hero,
body.has-pelican-shell[data-template="activity"] .hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.has-pelican-shell[data-page] .page-header > *,
body.has-pelican-shell[data-page] .page-hero > *,
body.has-pelican-shell[data-template="activity"] .hero > * {
  position: relative;
  z-index: 2;
}

body.has-pelican-shell[data-page] .page-header::before,
body.has-pelican-shell[data-page] .page-hero::before,
body.has-pelican-shell[data-template="activity"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(6, 17, 36, 0.92) 0%, rgba(8, 24, 49, 0.76) 44%, rgba(8, 24, 49, 0.34) 100%),
    var(--pelican-hero-image);
  background-size: cover;
  background-position: var(--pelican-hero-position, center);
  z-index: -2;
}

body.has-pelican-shell[data-page="voyages"] .page-header,
body.has-pelican-shell[data-page="tourisme"] .page-header,
body.has-pelican-shell[data-page="services"] .page-header,
body.has-pelican-shell[data-page="evenementiel"] .page-hero,
body.has-pelican-shell[data-page="sourcing"] .page-hero {
  min-height: clamp(520px, 76vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 172px 34px 48px;
}

body.has-pelican-shell[data-page="voyages"] .page-header h1,
body.has-pelican-shell[data-page="tourisme"] .page-header h1,
body.has-pelican-shell[data-page="services"] .page-header h1,
body.has-pelican-shell[data-page="evenementiel"] .page-hero h1,
body.has-pelican-shell[data-page="sourcing"] .page-hero h1 {
  max-width: 12.5ch;
  margin-bottom: 10px;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body.has-pelican-shell[data-page="voyages"] .page-header p,
body.has-pelican-shell[data-page="tourisme"] .page-header p,
body.has-pelican-shell[data-page="services"] .page-header p,
body.has-pelican-shell[data-page="evenementiel"] .page-hero p,
body.has-pelican-shell[data-page="sourcing"] .page-hero p {
  max-width: 54ch;
  margin: 0;
  font-size: clamp(15px, 1.25vw, 16px);
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.82);
}

body.has-pelican-shell[data-page="voyages"] .search-box {
  position: relative;
  z-index: 3;
  width: min(1100px, 100%);
  margin-top: 18px;
  box-shadow: 0 28px 80px rgba(10, 31, 68, 0.18);
}

body.has-pelican-shell[data-page="tourisme"] .filters {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: -28px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 56px rgba(10, 31, 68, 0.12);
}

body.has-pelican-shell[data-page="tourisme"] .filter-btn {
  min-height: 46px;
  padding: 12px 22px;
}

body.has-pelican-shell[data-page="services"] .page-header p {
  max-width: 700px;
}

body.has-pelican-shell[data-page="affiliation"] .hero {
  padding-top: 188px;
}

body.has-pelican-shell[data-page="evenementiel"] .page-hero h1 span,
body.has-pelican-shell[data-page="sourcing"] .page-hero h1 span,
body.has-pelican-shell[data-page="voyages"] .page-header h1 span {
  color: var(--shell-gold-light);
}

body.has-pelican-shell[data-page="vip"] .vip-hero {
  min-height: clamp(640px, 92vh, 980px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: 172px 34px 52px;
  background: #081428;
}

body.has-pelican-shell[data-page="vip"] .vip-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(6, 17, 36, 0.94) 0%, rgba(7, 20, 41, 0.78) 45%, rgba(7, 20, 41, 0.28) 100%),
    var(--pelican-hero-image);
  background-size: cover;
  background-position: var(--pelican-hero-position, center);
  z-index: 0;
}

body.has-pelican-shell[data-page="vip"] .vip-hero::before {
  z-index: 1;
  width: 980px;
  height: 980px;
}

body.has-pelican-shell[data-page="vip"] .vip-hero-content {
  max-width: 700px;
  margin: 0;
}

body.has-pelican-shell[data-page="vip"] .vip-hero h1 {
  max-width: 11.5ch;
  margin-bottom: 10px;
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

body.has-pelican-shell[data-page="vip"] .vip-hero h1 em {
  margin-top: 6px;
  font-style: normal;
  font-weight: 900;
  color: var(--shell-gold-light);
  letter-spacing: -0.03em;
}

body.has-pelican-shell[data-page="vip"] .vip-hero p {
  max-width: 52ch;
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.84);
}

body.has-pelican-shell[data-page="vip"] .vip-badge {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
  margin-bottom: 10px;
}

@media (max-width: 1280px) {
  body.has-pelican-shell[data-page="voyages"] .page-header,
  body.has-pelican-shell[data-page="tourisme"] .page-header,
  body.has-pelican-shell[data-page="services"] .page-header,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero,
  body.has-pelican-shell[data-page="sourcing"] .page-hero,
  body.has-pelican-shell[data-page="vip"] .vip-hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header h1,
  body.has-pelican-shell[data-page="tourisme"] .page-header h1,
  body.has-pelican-shell[data-page="services"] .page-header h1,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero h1,
  body.has-pelican-shell[data-page="sourcing"] .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 4.6vw, 52px);
  }

  body.has-pelican-shell[data-page="vip"] .vip-hero h1 {
    max-width: 11ch;
    font-size: clamp(36px, 4.9vw, 54px);
  }
}

body.has-pelican-shell[data-template="activity"] {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08) 0%, transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f7f6f2 45%, #ffffff 100%);
}

body.has-pelican-shell[data-template="activity"] .container {
  max-width: 1260px;
  padding: 126px 22px 72px;
}

body.has-pelican-shell[data-template="activity"] .hero {
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  margin: 0 0 28px;
  padding: 34px;
  border: 0;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(10, 31, 68, 0.16);
  background: transparent;
}

body.has-pelican-shell[data-template="activity"] .hero .kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
}

body.has-pelican-shell[data-template="activity"] .hero h1 {
  color: #ffffff;
  max-width: 13ch;
  font-size: clamp(38px, 5.6vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body.has-pelican-shell[data-template="activity"] .hero .sub {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.25vw, 16px);
  line-height: 1.58;
  max-width: 54ch;
}

body.has-pelican-shell[data-template="activity"] .grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.78fr);
  gap: 28px;
  margin-top: 0;
}

body.has-pelican-shell[data-template="activity"] .card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(10, 31, 68, 0.08);
  color: var(--shell-ink);
}

body.has-pelican-shell[data-template="activity"] .card:last-child {
  position: sticky;
  top: 124px;
}

body.has-pelican-shell[data-template="activity"] .card .small,
body.has-pelican-shell[data-template="activity"] ul,
body.has-pelican-shell[data-template="activity"] label {
  color: #5b687d;
}

body.has-pelican-shell[data-template="activity"] .meta div {
  border-color: rgba(10, 31, 68, 0.08);
  background: #f8f8fb;
}

body.has-pelican-shell[data-template="activity"] .meta .k {
  color: #71809a;
}

body.has-pelican-shell[data-template="activity"] .meta .v,
body.has-pelican-shell[data-template="activity"] h2,
body.has-pelican-shell[data-template="activity"] .section-title {
  color: var(--shell-deep-blue);
}

body.has-pelican-shell[data-template="activity"] input,
body.has-pelican-shell[data-template="activity"] select,
body.has-pelican-shell[data-template="activity"] textarea {
  border-color: rgba(10, 31, 68, 0.1);
  background: #ffffff;
  color: var(--shell-ink);
}

body.has-pelican-shell[data-template="activity"] .btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: linear-gradient(135deg, var(--shell-gold) 0%, var(--shell-gold-light) 100%);
  color: var(--shell-deep-blue);
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.22);
}

body.has-pelican-shell[data-template="activity"] .badge {
  background: rgba(10, 31, 68, 0.03);
  border-color: rgba(10, 31, 68, 0.08);
  color: var(--shell-deep-blue);
}

body.has-pelican-shell[data-page="destination"] .hero,
body.has-pelican-shell[data-page="voyages"].is-detail .hero {
  padding-top: 190px;
}

@media (max-width: 1180px) {
  .pelican-shell-bar {
    grid-template-columns: auto 1fr auto auto;
    row-gap: 10px;
  }

  .pelican-shell-links {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 0 2px 6px;
    margin: 0 -2px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .pelican-shell-menu {
    width: max-content;
    min-width: max-content;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .pelican-shell-item {
    scroll-snap-align: start;
  }

  .pelican-shell-item-language {
    display: none;
  }

  .pelican-shell-actions .pelican-language-slot {
    display: flex;
  }

  .pelican-shell-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pelican-shell-bar {
    grid-template-columns: auto 1fr auto auto;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header,
  body.has-pelican-shell[data-page="tourisme"] .page-header,
  body.has-pelican-shell[data-page="services"] .page-header,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero,
  body.has-pelican-shell[data-page="sourcing"] .page-hero,
  body.has-pelican-shell[data-page="vip"] .vip-hero {
    padding: 156px 24px 42px;
  }

  body.has-pelican-shell[data-template="activity"] .grid {
    grid-template-columns: 1fr;
  }

  body.has-pelican-shell[data-template="activity"] .card:last-child {
    position: static;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header h1,
  body.has-pelican-shell[data-page="tourisme"] .page-header h1,
  body.has-pelican-shell[data-page="services"] .page-header h1,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero h1,
  body.has-pelican-shell[data-page="sourcing"] .page-hero h1,
  body.has-pelican-shell[data-page="vip"] .vip-hero h1 {
    max-width: 11.5ch;
    font-size: clamp(32px, 6.6vw, 48px);
  }

  body.has-pelican-shell[data-page="voyages"] .page-header p,
  body.has-pelican-shell[data-page="tourisme"] .page-header p,
  body.has-pelican-shell[data-page="services"] .page-header p,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero p,
  body.has-pelican-shell[data-page="sourcing"] .page-hero p,
  body.has-pelican-shell[data-page="vip"] .vip-hero p {
    max-width: 36ch;
    line-height: 1.55;
  }
}

@media (min-width: 1025px) {
  .pelican-shell-bar,
  .pelican-shell-origin {
    width: min(1360px, calc(100% - 48px));
  }

  .pelican-shell-bar {
    gap: 34px;
    padding: 16px 0 14px;
  }

  .pelican-shell-link {
    min-height: 40px;
    padding: 10px 0;
    font-size: 12px;
  }

  .pelican-shell-cta {
    min-height: 54px;
    padding: 0 24px;
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  body.has-pelican-shell[data-page="voyages"] .page-header,
  body.has-pelican-shell[data-page="tourisme"] .page-header,
  body.has-pelican-shell[data-page="services"] .page-header,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero,
  body.has-pelican-shell[data-page="sourcing"] .page-hero {
    padding: 180px 42px 54px;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header h1,
  body.has-pelican-shell[data-page="tourisme"] .page-header h1,
  body.has-pelican-shell[data-page="services"] .page-header h1,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero h1,
  body.has-pelican-shell[data-page="sourcing"] .page-hero h1 {
    max-width: 13ch;
    font-size: clamp(42px, 4.2vw, 62px);
  }

  body.has-pelican-shell[data-page="voyages"] .page-header p,
  body.has-pelican-shell[data-page="tourisme"] .page-header p,
  body.has-pelican-shell[data-page="services"] .page-header p,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero p,
  body.has-pelican-shell[data-page="sourcing"] .page-hero p {
    max-width: 58ch;
    font-size: 16px;
  }

  body.has-pelican-shell[data-page="vip"] .vip-hero {
    padding: 180px 42px 56px;
  }

  body.has-pelican-shell[data-page="vip"] .vip-hero h1 {
    max-width: 12ch;
    font-size: clamp(44px, 4.6vw, 64px);
  }
}

@media (max-width: 768px) {
  .pelican-shell-bar,
  .pelican-shell-origin,
  .pelican-shell-mobile {
    width: min(100%, calc(100% - 24px));
  }

  .pelican-shell-bar {
    grid-template-columns: auto 1fr auto;
    padding: 12px 0 10px;
  }

  .pelican-shell-links {
    display: none;
  }

  .pelican-shell-menu {
    gap: 6px;
  }

  .pelican-shell-link {
    padding: 10px 14px;
    font-size: 12px;
  }

  .pelican-shell-link.is-secondary {
    font-size: 11px;
  }

  .pelican-shell-brand-wordmark {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .pelican-shell-brand img {
    height: 38px;
  }

  .pelican-shell-origin {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    font-size: 11px;
    scrollbar-width: none;
  }

  .pelican-shell-origin::-webkit-scrollbar {
    display: none;
  }

  .pelican-shell-cta {
    display: none;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header,
  body.has-pelican-shell[data-page="tourisme"] .page-header,
  body.has-pelican-shell[data-page="services"] .page-header,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero,
  body.has-pelican-shell[data-page="sourcing"] .page-hero,
  body.has-pelican-shell[data-page="vip"] .vip-hero {
    min-height: auto;
    padding: 144px 20px 34px;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header h1,
  body.has-pelican-shell[data-page="tourisme"] .page-header h1,
  body.has-pelican-shell[data-page="services"] .page-header h1,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero h1,
  body.has-pelican-shell[data-page="sourcing"] .page-hero h1,
  body.has-pelican-shell[data-page="vip"] .vip-hero h1,
  body.has-pelican-shell[data-template="activity"] .hero h1 {
    max-width: 12.8ch;
    font-size: clamp(34px, 7vw, 48px);
    line-height: 0.96;
  }

  body.has-pelican-shell[data-page="voyages"] .page-header p,
  body.has-pelican-shell[data-page="tourisme"] .page-header p,
  body.has-pelican-shell[data-page="services"] .page-header p,
  body.has-pelican-shell[data-page="evenementiel"] .page-hero p,
  body.has-pelican-shell[data-page="sourcing"] .page-hero p,
  body.has-pelican-shell[data-page="vip"] .vip-hero p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.5;
  }

  body.has-pelican-shell[data-page="tourisme"] .filters {
    width: calc(100% - 24px);
    margin-top: -24px;
    padding: 18px 14px;
    border-radius: 22px;
  }

  body.has-pelican-shell[data-page="affiliation"] .hero {
    padding-top: 160px;
  }

  body.has-pelican-shell[data-page="voyages"] .search-box {
    margin-top: 24px;
  }

  body.has-pelican-shell[data-template="activity"] .container {
    padding: 110px 16px 52px;
  }

  body.has-pelican-shell[data-template="activity"] .hero {
    min-height: 360px;
    padding: 24px;
    border-radius: 24px;
  }

  body.has-pelican-shell[data-template="activity"] .calorie-hero {
    width: 100%;
    min-width: 0;
  }

  body.has-pelican-shell[data-template="activity"] .activity-media-grid {
    grid-template-columns: 1fr;
  }

  .activity-lightbox {
    padding: 12px;
  }

  .activity-lightbox-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .pelican-shell-chips {
    gap: 10px;
    margin-top: 18px;
  }

  .pelican-shell-chip {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }
}
