:root {
  color-scheme: light;
  --ink: #15151d;
  --ink-soft: #3a3742;
  --paper: #EEDFD6;
  --paper-2: #f7eee8;
  --mist: #ead9d0;
  --line: rgba(21, 21, 29, 0.14);
  --white: #fffdf8;
  --blue: #4E9AC7;
  --citrus: #FFD452;
  --sakura: #F4B6CF;
  --matcha: #6FA36A;
  --rio-green: #00A88F;
  --rio-orange: #FF6B00;
  --lagoon: #7FE7DC;
  --tahiti-pink: #FF5CA8;
  --terracotta: #E14124;
  --purple: #8A3FFC;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow: 0 24px 70px rgba(28, 25, 35, 0.16);
  --font-display: "Greycliff CF", "Greycliff", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Greycliff CF", "Greycliff", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(238, 223, 214, 0.96), rgba(247, 238, 232, 0.8)),
    repeating-linear-gradient(90deg, rgba(21, 21, 29, 0.018) 0 1px, transparent 1px 13vw);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
}

.skip-link:focus {
  transform: translateY(0);
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #76b8ca;
  color: var(--white);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__atmosphere {
  position: absolute;
  inset: -7%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.38) 0%, rgba(255, 253, 248, 0.02) 32%, rgba(21, 21, 29, 0.12) 100%),
    url("assets/textures/splash-water.svg") center / cover no-repeat;
  overflow: hidden;
  animation: splash-breath 7.5s ease-in-out infinite alternate;
}

.splash__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.58) 0%, rgba(255, 253, 248, 0.16) 36%, transparent 58%),
    radial-gradient(ellipse at 50% 46%, rgba(255, 253, 248, 0.46), transparent 0 3%, transparent 18%),
    linear-gradient(90deg, rgba(21, 21, 29, 0.14), transparent 44%, rgba(21, 21, 29, 0.1));
  mix-blend-mode: screen;
  animation: ocean-shimmer 8.5s ease-in-out infinite alternate;
}

.splash__atmosphere::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 47%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.62) 18%, rgba(255, 253, 248, 0.74) 50%, rgba(255, 253, 248, 0.28) 82%, transparent);
  filter: blur(0.8px);
  animation: horizon-glow 5.5s ease-in-out infinite alternate;
}

.splash__cloud {
  position: absolute;
  display: block;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 2.8;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 253, 248, 0.58), rgba(255, 253, 248, 0.08) 58%, transparent 72%);
  filter: blur(18px);
  opacity: 0.75;
  animation: cloud-pass 8s ease-in-out infinite alternate;
}

.splash__cloud--one {
  left: -9vw;
  top: 19vh;
}

.splash__cloud--two {
  right: -14vw;
  top: 35vh;
  opacity: 0.42;
  animation-delay: 700ms;
}

.splash__logo {
  position: relative;
  width: min(420px, 62vw);
  height: auto;
  opacity: 0;
  transform: translateY(18px);
  filter: drop-shadow(0 16px 38px rgba(21, 21, 29, 0.2));
  animation: letter-in 820ms ease forwards;
}

.splash__progress {
  position: absolute;
  bottom: 10vh;
  width: min(430px, 70vw);
  height: 52px;
  background: transparent;
  overflow: visible;
}

.splash__progress span {
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
  display: block;
  height: 2px;
  background: rgba(255, 253, 248, 0.54);
  transform-origin: left;
  animation: progress 3.2s ease forwards;
}

.splash__progress::before {
  display: none;
}

.splash__progress i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  filter: drop-shadow(0 8px 16px rgba(21, 21, 29, 0.2));
  transform: translateX(-8px) rotate(8deg);
  animation: plane-route 3.2s ease forwards;
}

.splash__progress svg {
  width: 30px;
  height: 30px;
}

.splash__progress path {
  fill: currentColor;
}

.splash__skip {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(16px);
}

@keyframes splash-breath {
  from {
    transform: scale(1.03) translate3d(-1.1%, -0.8%, 0) rotate(-0.15deg);
  }
  to {
    transform: scale(1.08) translate3d(1.1%, 0.8%, 0) rotate(0.15deg);
  }
}

@keyframes horizon-glow {
  from {
    opacity: 0.42;
  }
  to {
    opacity: 0.9;
  }
}

@keyframes ocean-shimmer {
  from {
    transform: translate3d(-0.8%, 0, 0);
    opacity: 0.84;
  }
  to {
    transform: translate3d(0.8%, -0.4%, 0);
    opacity: 1;
  }
}

@keyframes cloud-pass {
  from {
    transform: translateX(-18px) translateY(4px) scale(1);
  }
  to {
    transform: translateX(26px) translateY(-8px) scale(1.08);
  }
}

@keyframes letter-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes plane-route {
  from {
    left: 0;
    transform: translateX(-8px) translateY(0) rotate(7deg);
  }
  to {
    left: 100%;
    transform: translateX(-24px) translateY(0) rotate(7deg);
  }
}

.site-header {
  position: fixed;
  left: 18px;
  right: 18px;
  top: 16px;
  z-index: 90;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(132px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: var(--radius-pill);
  background: rgba(247, 238, 232, 0.82);
  box-shadow: 0 14px 40px rgba(22, 22, 30, 0.08);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 134px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(21, 21, 29, 0.72);
  font-size: 0.83rem;
  font-weight: 200;
}

.desktop-nav a,
.link-button {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.link-button:hover,
.desktop-nav a.is-active,
.link-button.is-active {
  color: var(--ink);
}

.desktop-nav a.is-active,
.link-button.is-active {
  background: rgba(255, 253, 248, 0.56);
}

.desktop-nav a.is-active::after,
.link-button.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-link,
.cart-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 21, 29, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.5);
  color: rgba(21, 21, 29, 0.72);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.profile-link span,
.cart-link span {
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
}

.profile-link span {
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-link {
  position: relative;
}

.cart-link span {
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8h15l-1.7 8.4a2 2 0 0 1-2 1.6H9a2 2 0 0 1-2-1.6L5 3H2'/%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='18' cy='21' r='1'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8h15l-1.7 8.4a2 2 0 0 1-2 1.6H9a2 2 0 0 1-2-1.6L5 3H2'/%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='18' cy='21' r='1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-link strong {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  line-height: 1;
}

.profile-link:hover,
.profile-link.is-active,
.cart-link:hover,
.cart-link.is-active {
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  transform: translateY(-1px);
}

.link-button {
  border: 0;
  background: transparent;
  color: rgba(21, 21, 29, 0.72);
  font-size: 0.83rem;
  font-weight: 200;
}

.language-switch {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(21, 21, 29, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.42);
  color: rgba(21, 21, 29, 0.56);
  font-size: 0.75rem;
}

.language-switch button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-weight: 200;
}

.language-switch button.is-active {
  color: var(--ink);
  font-weight: 600;
}

.primary-button,
.secondary-button,
.ghost-button,
.icon-button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  font-weight: 200;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(21, 21, 29, 0.18);
}

.primary-button i,
.secondary-button i,
.ghost-button i {
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
  box-shadow: none;
}

.primary-button--small {
  min-height: 42px;
  padding: 0 17px;
}

.primary-button--light {
  background: var(--white);
  color: var(--ink);
}

.secondary-button {
  background: rgba(255, 253, 248, 0.78);
  border-color: rgba(21, 21, 29, 0.16);
  color: var(--ink);
}

.ghost-button {
  background: transparent;
  border-color: rgba(255, 253, 248, 0.44);
  color: var(--white);
}

.icon-button {
  width: 48px;
  padding: 0;
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  bottom: 16px;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 92px 18px auto;
  z-index: 89;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(247, 238, 232, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 200;
}

.mobile-language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(21, 21, 29, 0.08);
  color: rgba(21, 21, 29, 0.62);
  font-size: 0.86rem;
}

.mobile-language-switch button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.mobile-language-switch button.is-active {
  color: var(--ink);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: rgba(21, 21, 29, 0.06);
}

.mobile-nav a.is-active {
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
}

.page {
  display: none;
  min-height: 100vh;
}

.page.is-active {
  display: block;
  animation: page-in 360ms ease both;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(68px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section--compact {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 74px);
}

.section__head {
  max-width: 880px;
  margin: 0 auto clamp(30px, 5vw, 58px);
  text-align: center;
}

.section__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(21, 21, 29, 0.64);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 253, 248, 0.72);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: 0;
}

h1,
.display {
  font-size: clamp(4rem, 12.5vw, 12.6rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(2.65rem, 7vw, 7.4rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
}

p {
  line-height: 1.68;
}

.lead {
  margin: 18px 0 0;
  color: rgba(21, 21, 29, 0.72);
  font-size: clamp(1.05rem, 1.65vw, 1.36rem);
  line-height: 1.58;
  font-weight: 200;
}

.destination-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lead--light {
  color: rgba(255, 253, 248, 0.8);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 4vw, 56px) 34px;
  color: var(--white);
  background: #15151d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 21, 29, 0.76), rgba(21, 21, 29, 0.22) 52%, rgba(21, 21, 29, 0.38)),
    linear-gradient(0deg, rgba(21, 21, 29, 0.78), transparent 34%),
    url("assets/photography/centre/accueil-all-1.jpg") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.07) 0 1px, transparent 1px 10.5vw);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1760px);
  max-width: none;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.hero__content h1 {
  width: 100%;
  max-width: 1720px;
  font-size: clamp(5rem, 8.3vw, 10.8rem);
  line-height: 0.82;
}

.hero__copy {
  max-width: 980px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 8vw, 96px);
  background: rgba(255, 253, 248, 0.22);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.journey-stop {
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.08);
}

.journey-stop span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.journey-stop strong {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 200;
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.editorial-copy {
  max-width: 780px;
}

.editorial-copy p {
  color: rgba(21, 21, 29, 0.74);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.passport-panel {
  position: relative;
  min-height: 560px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 42px 42px 42px 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(232, 237, 240, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(21, 21, 29, 0.06) 34px 35px);
  box-shadow: var(--shadow);
}

.passport-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 22px;
  width: 280px;
  height: 460px;
  border: 1px solid rgba(21, 21, 29, 0.16);
  border-radius: 140px 140px 0 0;
  background:
    linear-gradient(165deg, rgba(78, 154, 199, 0.26), rgba(255, 212, 82, 0.14)),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(255, 253, 248, 0.25) 17px 18px);
}

.passport-card {
  position: relative;
  max-width: 390px;
  min-height: 380px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border-radius: 26px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(21, 21, 29, 0.26);
}

.place-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px 42px 42px 12px;
  min-height: 560px;
  box-shadow: var(--shadow);
  background: var(--paper-2);
}

.place-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.place-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 21, 29, 0.54), transparent 48%);
}

.place-panel__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: var(--white);
}

.place-panel__caption span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.place-panel__caption strong {
  max-width: 420px;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 200;
  line-height: 1.08;
}

.passport-card__code {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.passport-card h3 {
  max-width: 280px;
}

.barcode {
  height: 58px;
  background: repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.95) 0 3px, transparent 3px 7px, rgba(255, 253, 248, 0.76) 7px 10px, transparent 10px 18px);
  opacity: 0.82;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card,
.soft-card,
.testimonial,
.faq-item,
.product-card,
.destination-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 55px rgba(28, 25, 35, 0.08);
}

.step-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 22px;
}

.step-card span {
  color: rgba(21, 21, 29, 0.45);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.step-card p {
  margin: 12px 0 0;
  color: rgba(21, 21, 29, 0.68);
  font-size: 0.94rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
}

.destination-card {
  --accent: var(--blue);
  --accent-2: var(--citrus);
  min-height: 500px;
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 76px rgba(28, 25, 35, 0.18);
}

.destination-card__art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(21, 21, 29, 0.64), rgba(21, 21, 29, 0.1) 58%, rgba(21, 21, 29, 0.18)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 68%, #eedfd6), color-mix(in srgb, var(--accent-2) 46%, #eedfd6));
  overflow: hidden;
}

.destination-card__art::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 12%;
  width: min(220px, 58%);
  aspect-ratio: 1;
  background: var(--picto) center / contain no-repeat;
  opacity: 0.82;
  filter: drop-shadow(0 24px 50px rgba(21, 21, 29, 0.16));
  transform: translateY(12px) rotate(-3deg);
  transition: transform 360ms ease;
}

.destination-card__art::after {
  content: "";
  position: absolute;
  inset: auto -8% -8%;
  height: 44%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-2) 50%, transparent), color-mix(in srgb, var(--accent) 48%, transparent));
  opacity: 0.5;
  clip-path: polygon(0 38%, 22% 22%, 41% 42%, 63% 18%, 100% 36%, 100% 100%, 0 100%);
}

.destination-card:hover .destination-card__art::before {
  transform: translateY(0) rotate(0deg);
}

.destination-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 24px;
}

.destination-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(21, 21, 29, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.74);
  color: rgba(21, 21, 29, 0.72);
  font-size: 0.78rem;
  font-weight: 200;
}

.chip--light {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(8px);
}

.mood-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.mood-filter {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0 16px;
  background: rgba(255, 253, 248, 0.72);
  color: rgba(21, 21, 29, 0.68);
  font-weight: 200;
}

.mood-filter.is-active {
  background: var(--ink);
  color: var(--white);
}

.story-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(21, 21, 29, 0.95), rgba(36, 33, 44, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.05) 0 1px, transparent 1px 11vw);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.story-layout p {
  color: rgba(255, 253, 248, 0.74);
}

.sensory-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 50px rgba(21, 21, 29, 0.08);
  backdrop-filter: blur(8px);
}

.concept-board {
  min-height: 560px;
  border-color: rgba(21, 21, 29, 0.14);
  border-radius: 30px;
  background: #e7e6e2;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.concept-board .sense-tile {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(24px, 3vw, 42px);
  background: transparent;
}

.concept-board .sense-tile span {
  color: rgba(21, 21, 29, 0.55);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  letter-spacing: 0.18em;
}

.concept-board .sense-tile p {
  margin: 0;
  color: rgba(21, 21, 29, 0.62);
  font-size: clamp(1rem, 1.45vw, 1.36rem);
  line-height: 1.65;
}

.sensory-preview {
  display: grid;
  justify-items: stretch;
}

.sensory-preview figure {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-2);
}

.sensory-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(0.98);
}

.fragment--closeup img {
  object-position: 50% 50%;
}

.fragment--sicily img {
  object-position: 50% 54%;
}

.fragment--tokyo img {
  object-position: 54% 48%;
}

.fragment--rio {
  width: min(100%, 360px);
}

.fragment--rio img {
  object-position: 50% 42%;
}

.fragment--tahiti {
  width: min(100%, 560px);
  aspect-ratio: 16 / 7;
}

.fragment--tahiti img {
  object-position: 50% 50%;
}

.fragment--marrakech {
  width: min(100%, 360px);
}

.fragment--marrakech img {
  object-position: 50% 46%;
}

.sensory-preview figure::after {
  content: "";
  display: none;
}

.sensory-preview figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.45;
}

.sense-tile {
  min-height: 170px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.42);
}

.sense-tile span {
  color: rgba(21, 21, 29, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sense-tile p {
  margin-bottom: 0;
  color: rgba(21, 21, 29, 0.74);
}

.conversion-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(255, 253, 248, 0.92), rgba(232, 237, 240, 0.84)),
    repeating-linear-gradient(90deg, rgba(21, 21, 29, 0.04) 0 1px, transparent 1px 22px);
  box-shadow: var(--shadow);
}

.conversion-strip h2 {
  font-size: clamp(2.1rem, 5vw, 5.4rem);
}

.shop-preview,
.testimonial-grid,
.product-grid,
.faq-grid,
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.section__head--testimonials {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.section__head--testimonials h2 {
  max-width: 940px;
}

.product-card {
  overflow: hidden;
}

.product-card__visual {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--product-a, var(--lagoon)) 52%, #eedfd6), color-mix(in srgb, var(--product-b, var(--paper)) 46%, #eedfd6));
}

.product-card__visual--image {
  background: var(--paper-2);
}

.product-card__visual--image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.product-card__visual::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 46% 46% 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.56)),
    repeating-linear-gradient(90deg, rgba(21, 21, 29, 0.08) 0 2px, transparent 2px 16px);
  box-shadow: 0 28px 52px rgba(21, 21, 29, 0.16);
}

.product-card__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24%;
  width: 48px;
  height: 110px;
  border: 1px solid rgba(21, 21, 29, 0.24);
  border-radius: 24px 24px 8px 8px;
  background: rgba(255, 253, 248, 0.58);
  transform: translateX(-50%);
}

.product-card__visual--image::before,
.product-card__visual--image::after {
  display: none;
}

.product-card__body {
  padding: 20px;
}

.product-card__body p {
  color: rgba(21, 21, 29, 0.68);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.secondary-button--small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
}

@media (min-width: 760px) {
  .section__head--passes h2 {
    white-space: nowrap;
  }
}

.product-detail-image {
  width: 100%;
  display: block;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.price {
  font-weight: 900;
}

.testimonial,
.faq-item,
.soft-card {
  padding: 22px;
}

.testimonial p,
.faq-item p,
.soft-card p {
  color: rgba(21, 21, 29, 0.68);
}

.page-hero {
  padding: 144px clamp(18px, 5vw, 72px) 62px;
}

.page-hero__inner {
  min-height: min(660px, 72svh);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 58px 58px;
  padding: clamp(26px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(21, 21, 29, 0.74), rgba(21, 21, 29, 0.04)),
    linear-gradient(135deg, var(--accent, var(--blue)), var(--accent-2, var(--citrus)));
}

.page-hero__inner::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: var(--motif, none) center / cover no-repeat;
  opacity: 0.34;
  mix-blend-mode: overlay;
}

.page-hero__inner::after {
  content: "";
  display: none;
}

.page-hero--image .page-hero__inner,
.page-hero--passport .page-hero__inner {
  background:
    linear-gradient(0deg, rgba(21, 21, 29, 0.84), rgba(21, 21, 29, 0.34)),
    var(--hero-image) center / cover no-repeat;
}

.page-hero--contact .page-hero__inner {
  background:
    linear-gradient(90deg, rgba(21, 21, 29, 0.82) 0%, rgba(21, 21, 29, 0.42) 48%, rgba(21, 21, 29, 0.16) 100%),
    var(--hero-image) center / cover no-repeat;
}

.page-hero--passport .page-hero__inner {
  background:
    linear-gradient(90deg, rgba(21, 21, 29, 0.86) 0%, rgba(21, 21, 29, 0.48) 48%, rgba(21, 21, 29, 0.18) 100%),
    var(--hero-image) center / cover no-repeat;
}

.page-hero--image .page-hero__inner::before,
.page-hero--passport .page-hero__inner::before {
  display: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.product-hero .page-hero__content {
  min-width: 0;
  max-width: 760px;
}

.product-hero .page-hero__content h1 {
  max-width: 100%;
  font-size: clamp(4.2rem, 7.8vw, 10rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.product-hero__media {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 70px rgba(21, 21, 29, 0.2);
}

.product-hero__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 36vw, 520px);
  display: block;
  object-fit: cover;
}

.product-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.destination-detail {
  --accent: var(--blue);
  --accent-2: var(--citrus);
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(238, 223, 214, 0.8), rgba(238, 223, 214, 0.9));
}

.destination-detail::before,
.destination-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.destination-detail::before {
  background: var(--motif, none) center top / cover no-repeat;
  opacity: 0.24;
}

.destination-detail::after {
  display: none;
}

.destination-detail > * {
  position: relative;
  z-index: 1;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.detail-copy {
  display: grid;
  gap: 22px;
}

.detail-copy p {
  color: rgba(21, 21, 29, 0.72);
  font-size: 1.06rem;
}

.detail-aside {
  display: grid;
  gap: 28px;
  align-content: start;
}

.sticky-booking {
  position: sticky;
  top: 106px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.sticky-booking dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.sticky-booking div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.sticky-booking dt {
  color: rgba(21, 21, 29, 0.56);
  font-weight: 800;
}

.sticky-booking dd {
  margin: 0;
  font-weight: 900;
}

.booking-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  padding-top: 96px;
}

.booking-aside {
  position: sticky;
  top: 0;
  min-height: calc(100svh - 96px);
  padding: clamp(24px, 5vw, 54px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(rgba(21, 21, 29, 0.48), rgba(21, 21, 29, 0.76)),
    linear-gradient(135deg, var(--accent, var(--blue)), var(--accent-2, var(--citrus)));
}

.booking-aside::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: var(--booking-motif) center / cover no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.booking-aside > * {
  position: relative;
  z-index: 1;
}

.boarding-steps {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.booking-account-status {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.1);
}

.booking-account-status span,
.booking-account-status a {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
}

.booking-account-status strong {
  font-size: 1rem;
}

.booking-account-status a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.boarding-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-pill);
  color: rgba(255, 253, 248, 0.72);
}

.boarding-step span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.boarding-step.is-current,
.boarding-step.is-complete {
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
}

.booking-main {
  padding: clamp(24px, 5vw, 60px);
}

.booking-panel {
  max-width: 880px;
  margin: 0 auto;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.flight-picker {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) 54px minmax(300px, 1.18fr);
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.flight-field {
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
}

.flight-field span {
  color: rgba(21, 21, 29, 0.48);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.flight-field strong,
.flight-field select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 200;
  line-height: 1.04;
}

.flight-field select {
  appearance: none;
  cursor: pointer;
  min-width: 0;
  white-space: normal;
  min-height: 58px;
  padding: 8px 48px 8px 14px;
  border: 1px solid rgba(21, 21, 29, 0.28);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    rgba(255, 253, 248, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.6);
}

.flight-field small {
  color: rgba(21, 21, 29, 0.62);
  line-height: 1.45;
}

.flight-plane {
  position: relative;
  height: 1px;
  background: rgba(21, 21, 29, 0.24);
}

.flight-plane::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  background: var(--ink);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M59.2 6.9c-1.4-1.4-4.4-.8-7 1.2L37 19.8 11.6 11.2 6.7 15l20.9 12.7-12.5 10-8.7-2.8-3.4 2.7 10.4 7.1 4 11.8 3.5-2.8-.6-9 12.6-10.1 7.9 23.1 5-3.9-2.7-26.7 14.8-12c2.4-2 3-5.8 1.3-7.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M59.2 6.9c-1.4-1.4-4.4-.8-7 1.2L37 19.8 11.6 11.2 6.7 15l20.9 12.7-12.5 10-8.7-2.8-3.4 2.7 10.4 7.1 4 11.8 3.5-2.8-.6-9 12.6-10.1 7.9 23.1 5-3.9-2.7-26.7 14.8-12c2.4-2 3-5.8 1.3-7.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(-50%, -50%) rotate(8deg);
}

.calendar-picker {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-day,
.time-slot,
.payment-method,
.subscription-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.calendar-day {
  min-height: 94px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 14px;
}

.calendar-day span,
.subscription-card strong {
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1.08;
}

.calendar-day small,
.subscription-card span {
  color: rgba(21, 21, 29, 0.58);
  line-height: 1.35;
}

.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-day:not(:disabled):hover,
.time-slot:hover,
.payment-method:hover,
.subscription-card:hover,
.calendar-day.is-selected,
.time-slot.is-selected,
.payment-method.is-selected,
.subscription-card.is-selected {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-slot {
  min-width: 96px;
  min-height: 48px;
  display: grid;
  place-items: center;
  font-weight: 600;
  text-align: center;
}

.section__head--small {
  margin-bottom: 16px;
}

.section__head--small h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.subscription-panel {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.4);
}

.subscription-grid,
.payment-methods {
  display: grid;
  gap: 10px;
}

.subscription-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.subscription-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.plans-layout {
  display: grid;
  gap: clamp(24px, 5vw, 54px);
}

.pricing-section {
  display: grid;
  gap: 20px;
}

.pricing-grid,
.pass-grid {
  display: grid;
  gap: 16px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pricing-card,
.account-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 55px rgba(28, 25, 35, 0.08);
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.pricing-grid > .pricing-card {
  grid-template-rows: minmax(5.6rem, auto) minmax(3.2rem, auto) auto auto minmax(1.35rem, auto) auto;
  height: 100%;
}

.pricing-grid > .pricing-card h3 {
  margin: 0;
  align-self: start;
}

.pricing-grid > .pricing-card > p:not(.pricing-note) {
  align-self: start;
}

.pricing-grid > .pricing-card .secondary-button {
  align-self: end;
}

.pricing-card--featured {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
}

.pricing-card--featured h2 {
  grid-column: 1 / -1;
  font-size: clamp(2.4rem, 6vw, 6rem);
}

.pricing-card__price {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
}

.pricing-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.pricing-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.pricing-card dt {
  color: rgba(21, 21, 29, 0.56);
  font-weight: 800;
}

.pricing-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.pricing-note {
  margin: 0;
  color: rgba(21, 21, 29, 0.62);
  font-size: 0.94rem;
}

.pricing-note--section {
  max-width: 760px;
}

.pricing-note--reserved {
  visibility: hidden;
}

.plan-options {
  display: grid;
  gap: 8px;
}

.plan-option {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.54);
  color: var(--ink);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.plan-option span {
  color: rgba(21, 21, 29, 0.68);
  font-size: 0.9rem;
}

.plan-option strong {
  font-size: 1.05rem;
}

.plan-option small {
  color: rgba(21, 21, 29, 0.58);
}

.plan-option:hover,
.plan-option.is-selected {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-1px);
}

.passport-panel {
  position: static;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: visible;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 55px rgba(28, 25, 35, 0.08);
}

.passport-panel::before {
  display: none;
}

.passport-panel figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.passport-panel img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.46fr);
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
}

.account-panel__status {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(21, 21, 29, 0.06);
}

.account-panel__status span {
  color: rgba(21, 21, 29, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.account-panel__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  padding-top: 96px;
}

.checkout-rail {
  min-height: calc(100svh - 96px);
  padding: clamp(24px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 21, 29, 0.82), rgba(72, 58, 61, 0.66)),
    url("assets/photography/centre/centre-elsea-2.jpg") center / cover;
}

.checkout-rail h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.checkout-main {
  display: grid;
  align-items: center;
  padding: clamp(24px, 5vw, 60px);
}

.checkout-panel,
.account-auth,
.account-card,
.reservation-status {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 55px rgba(28, 25, 35, 0.08);
}

.checkout-panel {
  width: min(920px, 100%);
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 44px);
}

.checkout-steps {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.checkout-steps span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-pill);
  color: rgba(255, 253, 248, 0.72);
}

.checkout-steps span.is-current,
.checkout-steps span.is-complete {
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
}

.checkout-price {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.feature-list,
.history-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.history-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ink);
}

.mini-summary {
  display: grid;
  gap: 0;
  margin: 0;
}

.mini-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mini-summary dt {
  color: rgba(21, 21, 29, 0.56);
  font-weight: 800;
}

.mini-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.payment-card-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.payment-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.payment-mode-grid .payment-method {
  min-height: 92px;
  align-content: center;
  gap: 6px;
}

.payment-method small {
  color: rgba(21, 21, 29, 0.58);
  font-size: 0.82rem;
  font-weight: 200;
}

.reservation-status {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: 22px;
}

.reservation-status h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.account-auth {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
}

.account-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.account-card--wide {
  grid-column: 1 / -1;
}

.account-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.account-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-card .ghost-button {
  border-color: rgba(21, 21, 29, 0.16);
  color: var(--ink);
}

.account-alert {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(21, 21, 29, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.58);
  color: rgba(21, 21, 29, 0.72);
}

.history-list li {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.history-list small,
.empty-state {
  color: rgba(21, 21, 29, 0.58);
  font-weight: 200;
}

.empty-state {
  margin: 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 20px;
  align-items: start;
}

.cart-panel,
.cart-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 55px rgba(28, 25, 35, 0.08);
}

.cart-panel {
  padding: clamp(22px, 3vw, 34px);
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.58);
}

.cart-item img,
.cart-item__icon {
  width: 96px;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
}

.cart-item img {
  object-fit: cover;
}

.cart-item__icon {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cart-item h3 {
  margin: 0 0 5px;
}

.cart-item p {
  margin: 0 0 8px;
  color: rgba(21, 21, 29, 0.62);
}

.cart-item__controls {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-item__controls label {
  display: grid;
  gap: 5px;
  color: rgba(21, 21, 29, 0.58);
  font-size: 0.82rem;
}

.cart-item__controls input {
  width: 86px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.cart-summary {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.cart-summary > strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.cart-crosssell {
  margin-top: clamp(28px, 5vw, 54px);
}

.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.crosssell-card {
  display: grid;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
}

.crosssell-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--product-a), var(--product-b));
}

.crosssell-card h3 {
  min-height: 3.2em;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.crosssell-card .secondary-button {
  width: 100%;
  margin-top: 12px;
  padding-inline: 12px;
}

.account-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.payment-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.payment-method {
  min-height: 62px;
  display: grid;
  place-items: center;
  font-weight: 600;
  text-align: center;
}

.option-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.option-card:hover,
.option-card.is-selected {
  border-color: var(--ink);
  transform: translateY(-2px);
  background: var(--white);
}

.option-card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 200;
}

.option-card strong.destination-name {
  font-weight: 600;
}

.option-card span {
  color: rgba(21, 21, 29, 0.62);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.booking-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.boarding-pass {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.boarding-pass__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(21, 21, 29, 0.98), rgba(48, 42, 58, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.08) 0 1px, transparent 1px 18px);
  color: var(--white);
}

.boarding-pass__body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.pass-cell {
  min-height: 120px;
  padding: 20px;
  background: var(--white);
}

.pass-cell span {
  display: block;
  margin-bottom: 14px;
  color: rgba(21, 21, 29, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-panel {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(22, 119, 168, 0.26), rgba(237, 122, 59, 0.18)),
    repeating-linear-gradient(0deg, rgba(21, 21, 29, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(21, 21, 29, 0.06) 0 1px, transparent 1px 34px);
}

.visit-media {
  display: grid;
  gap: 14px;
}

.visit-media img {
  width: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.map-panel::before {
  content: "";
  position: absolute;
  left: 16%;
  top: 16%;
  width: 58%;
  height: 56%;
  border: 2px solid rgba(21, 21, 29, 0.5);
  border-radius: 50% 46% 48% 42%;
  transform: rotate(-10deg);
}

.map-panel::after {
  content: "elsea";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 200;
  letter-spacing: 0;
}

.faq-item {
  display: grid;
  gap: 12px;
}

.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

.section--contact {
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  width: min(100%, 920px);
  margin: 0 auto;
}

.contact-visual,
.contact-info-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

.contact-visual {
  overflow: hidden;
  margin: 0;
  min-height: clamp(320px, 46vw, 620px);
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 46vw, 620px);
  object-fit: cover;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
  overflow-wrap: anywhere;
}

.contact-info-card h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.2vw, 7rem);
  line-height: 0.92;
}

.contact-info-card p {
  max-width: 58ch;
  color: rgba(21, 21, 29, 0.62);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(220px, 0.6fr);
  gap: 26px;
  padding: 44px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #15151d;
  color: var(--white);
}

.site-footer p,
.footer-links a {
  color: rgba(255, 253, 248, 0.68);
}

.brand--footer {
  margin-bottom: 14px;
  width: 156px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.footer-meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-pill);
  color: rgba(255, 253, 248, 0.68);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(21, 21, 29, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-popup__panel {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 238, 232, 0.94)),
    repeating-linear-gradient(90deg, rgba(21, 21, 29, 0.035) 0 1px, transparent 1px 24px);
  box-shadow: var(--shadow);
}

.cart-popup__panel h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.cart-popup__close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.8);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.cart-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .link-button {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .language-switch {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__rail,
  .steps,
  .shop-preview,
  .testimonial-grid,
  .product-grid,
  .faq-grid,
  .gift-grid,
  .boarding-pass__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-grid,
  .story-layout,
  .product-hero,
  .detail-grid,
  .booking-shell,
  .checkout-shell,
  .cart-layout,
  .passport-panel,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-info-card h2 {
    max-width: 14ch;
  }

  .concept-board {
    min-height: auto;
  }

  .booking-aside {
    min-height: auto;
    position: relative;
  }

  .checkout-rail {
    min-height: auto;
  }

  .calendar-days,
  .subscription-grid,
  .pricing-grid,
  .account-panel,
  .account-dashboard,
  .crosssell-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flight-picker {
    grid-template-columns: 1fr;
  }

  .flight-plane {
    width: 1px;
    min-height: 58px;
    justify-self: center;
  }

  .flight-plane::before {
    transform: translate(-50%, -50%) rotate(98deg);
  }

  .sticky-booking {
    position: relative;
    top: auto;
  }

}

@media (max-width: 640px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    min-height: 58px;
    gap: 8px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    width: clamp(88px, 25vw, 104px);
  }

  .header-actions {
    max-width: 100%;
    gap: 6px;
  }

  .profile-link,
  .cart-link,
  .menu-toggle {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .profile-link span,
  .cart-link span {
    width: 17px;
    height: 17px;
  }

  .cart-link strong {
    right: -3px;
    top: -4px;
    min-width: 16px;
    height: 16px;
    font-size: 0.62rem;
  }

  .menu-toggle span {
    left: 10px;
    right: 10px;
  }

  .menu-toggle span:first-child {
    top: 14px;
  }

  .menu-toggle span:last-child {
    bottom: 14px;
  }

  .header-actions .primary-button--small {
    min-height: 36px;
    flex: 0 1 auto;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-actions .primary-button--small i {
    display: none;
  }

  .mobile-nav {
    inset: 76px 10px auto;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1,
  .display {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(21, 21, 29, 0.94) 0%, rgba(21, 21, 29, 0.82) 24%, rgba(21, 21, 29, 0.36) 58%, rgba(21, 21, 29, 0.22) 100%),
      linear-gradient(90deg, rgba(21, 21, 29, 0.4), rgba(21, 21, 29, 0.1) 52%, rgba(21, 21, 29, 0.28)),
      url("assets/photography/centre/accueil-all-1.jpg") center / cover;
  }

  .hero__content h1 {
    font-size: clamp(3.8rem, 16vw, 5.6rem);
    line-height: 0.9;
  }

  .hero__rail,
  .steps,
  .destination-grid,
  .sensory-board,
  .sensory-preview,
  .shop-preview,
  .testimonial-grid,
  .product-grid,
  .faq-grid,
  .gift-grid,
  .boarding-pass__body,
  .booking-options,
  .calendar-days,
  .payment-methods,
  .subscription-grid,
  .pricing-grid,
  .pass-grid,
  .account-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    grid-template-columns: 1fr;
  }

  .payment-card-form,
  .payment-mode-grid,
  .account-dashboard,
  .account-auth-grid {
    grid-template-columns: 1fr;
  }

  .account-card__head,
  .account-panel__actions {
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .cart-item img,
  .cart-item__icon {
    width: 76px;
  }

  .cart-item__controls {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .product-card__footer,
  .product-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__actions .primary-button,
  .product-card__actions .secondary-button {
    width: 100%;
  }

  .crosssell-grid {
    grid-template-columns: 1fr;
  }

  .conversion-strip {
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
  }

  .concept-board {
    border-radius: 24px;
  }

  .concept-board .sense-tile {
    min-height: auto;
    padding: 24px;
  }

  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero__inner {
    border-radius: 0 0 34px 34px;
    padding: 28px 22px;
  }

  .page-hero__content {
    max-width: 100%;
    min-width: 0;
  }

  .page-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 11vw, 4.2rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .page-hero__content .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .product-hero__media img {
    min-height: 260px;
  }

  .page-hero__inner::after {
    opacity: 0.22;
  }

  .field--full {
    grid-column: auto;
  }

  .booking-controls {
    flex-direction: column-reverse;
  }

  .booking-controls .primary-button,
  .booking-controls .secondary-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
