/* ===== Drawer drag zones ===== */
.drawer-drag-zone,
.sheet-drag-zone,
.sheet-drag-chrome,
.modal-drawer-chrome {
    touch-action: none;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}
.drawer-drag-zone:active,
.sheet-drag-zone:active,
.sheet-drag-chrome:active,
.modal-drawer-chrome:active { cursor: grabbing; }
.modal-drawer-bar.drawer-drag-zone { cursor: grab; }
.modal-drawer-handle {
    pointer-events: none;
    width: 44px;
    height: 5px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 12px rgba(191, 155, 88, 0.25);
}
.modal-panel.is-dragging { box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.75); }
.sheet-drag-chrome {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%;
}
.sheet-drag-handle-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0 4px;
    width: 100%;
    min-height: 22px;
}
.sheet-drag-zone:not(.sheet-drag-chrome) {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0 10px;
    width: 100%;
    min-height: 28px;
}
.sheet-drag-chrome .caprices-sheet-handle,
.sheet-drag-chrome .hk-sheet-handle,
.sheet-drag-chrome .transport-sheet-handle,
.sheet-drag-chrome .basket-sheet-handle,
.sheet-drag-chrome .roya-place-sheet-handle,
.sheet-drag-chrome .a2hs-sheet-handle,
.sheet-drag-chrome .reception-sheet-handle,
.sheet-drag-chrome .resupply-sheet-handle,
.sheet-drag-chrome .settings-sheet-bar .sheet-bar-handle {
    margin: 0;
}
.sheet-drag-chrome .a2hs-sheet-handle,
.sheet-drag-chrome .reception-sheet-handle,
.sheet-drag-chrome .resupply-sheet-handle {
    width: 42px;
    height: 5px;
    background: rgba(255, 255, 255, 0.28);
}
.sheet-drag-chrome .a2hs-sheet-title {
    margin: 4px 48px 10px;
    text-align: center;
}

/* ===== Welcome tour ===== */
body.welcome-tour-open { overflow: hidden; }

.welcome-replay-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
}
.welcome-replay-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(191, 155, 88, 0.35);
    background:
        radial-gradient(circle at 30% 30%, rgba(229, 204, 160, 0.2), transparent 55%),
        rgba(20, 18, 16, 0.85);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 0;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(191, 155, 88, 0.18);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.welcome-replay-btn:hover {
    border-color: rgba(191, 155, 88, 0.7);
    box-shadow: 0 0 28px rgba(191, 155, 88, 0.35);
    transform: scale(1.05);
}
.welcome-replay-btn i {
    font-size: 0.85rem;
    filter: drop-shadow(0 0 6px rgba(229, 204, 160, 0.55));
}

.welcome-tour {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}
.welcome-tour.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.45s ease, visibility 0s linear 0s;
}
/* Critique : un enfant en pointer-events:auto traverse le parent none
   et avale les clics après fermeture (sauf la zone bottom-nav via padding). */
.welcome-tour:not(.active),
.welcome-tour:not(.active) * {
    pointer-events: none !important;
}
.welcome-tour-backdrop {
    position: absolute;
    inset: 54px 0 0 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.welcome-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.welcome-spark {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e5cca0;
    box-shadow: 0 0 4px rgba(229, 204, 160, 0.35);
    opacity: 0;
    animation: welcome-sparkle ease-in-out infinite;
}
.welcome-spark:nth-child(3n) { width: 3px; height: 3px; background: #fff8e8; }
.welcome-spark:nth-child(4n) {
    width: 6px;
    height: 6px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}
@keyframes welcome-sparkle {
    0%, 100% { opacity: 0; transform: scale(0.4) translateY(0); }
    40% { opacity: 0.35; transform: scale(1) translateY(-8px); }
    70% { opacity: 0.12; transform: scale(0.7) translateY(-16px); }
}

.welcome-tour-shell {
    position: relative;
    z-index: 2;
    width: min(440px, 100%);
    height: calc(85dvh - 8px);
    max-height: calc(100dvh - 76px - env(safe-area-inset-bottom, 0px));
    margin: 0 auto calc(68px + env(safe-area-inset-bottom, 0px));
    padding: 10px 0 0;
    border-radius: 22px 22px 0 0;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.025) 0%, transparent 40%),
        linear-gradient(180deg, rgba(28, 26, 24, 0.97) 0%, rgba(12, 11, 10, 0.99) 100%);
    border: 1px solid rgba(191, 155, 88, 0.22);
    border-bottom: none;
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.45), 0 0 48px -28px rgba(191, 155, 88, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.welcome-tour.active .welcome-tour-shell {
    transform: translateY(0);
    opacity: 1;
}
.welcome-tour-handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin: 8px auto 4px;
  flex-shrink: 0;
}
html[data-saba-theme="bright"] .welcome-tour-handle {
  background: rgba(0, 0, 0, 0.18);
}
.welcome-shell-wm {
    position: absolute;
    right: -8%;
    bottom: 8%;
    width: min(72%, 280px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 40px rgba(191,155,88,0.15));
    transform: rotate(-8deg);
}
.welcome-track-wrap {
    position: relative;
    z-index: 1;
}

.welcome-tour-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 16px 6px;
    gap: 10px;
    flex-shrink: 0;
}
.welcome-skip {
    border: none;
    background: transparent;
    color: rgba(224, 224, 224, 0.4);
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 2px;
}
.welcome-skip:hover { color: var(--gold-light); }

.welcome-nav-cluster {
    display: flex;
    align-items: center;
    gap: 10px;
}
.welcome-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.welcome-dot {
    position: relative;
    width: 14px;
    height: 14px;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
.welcome-dot-ring {
    position: absolute;
    inset: -3px;
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}
.welcome-dot-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 2.5;
}
.welcome-dot-fg {
    fill: none;
    stroke: url(#none);
    stroke: #e5cca0;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    filter: drop-shadow(0 0 4px rgba(191, 155, 88, 0.65));
}
.welcome-dot-core {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.welcome-dot.active .welcome-dot-core {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 0 10px rgba(191, 155, 88, 0.7);
    transform: scale(1.08);
}

.welcome-next-mini {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(191, 155, 88, 0.35);
    background: rgba(191, 155, 88, 0.1);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    font-size: 0.7rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.welcome-next-mini:hover {
    border-color: rgba(191, 155, 88, 0.7);
    background: rgba(191, 155, 88, 0.2);
}
.welcome-next-mini-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 244, 212, 0.1) 50%, transparent 70%);
    background-size: 220% 100%;
    animation: welcome-shimmer 8s linear infinite;
    pointer-events: none;
}
.welcome-next-mini.is-done {
    border-color: rgba(92, 140, 90, 0.45);
    color: #b7d4b0;
}

.welcome-track-wrap {
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}
.welcome-track {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
    will-change: transform;
}
.welcome-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: 6px 20px calc(84px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 1;
    transform: none;
}
.welcome-slide:not(.is-active) {
    pointer-events: none;
}
.welcome-slide[data-step="0"] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}
.welcome-slide--scroll {
    max-height: none;
}
.welcome-slide--wishes {
  padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px)) !important;
}

.welcome-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 280px;
    height: 280px;
    margin-left: -140px;
    background: radial-gradient(circle, rgba(191, 155, 88, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: welcome-glow-pulse 9s ease-in-out infinite;
    filter: blur(10px);
}
.welcome-glow--soft { opacity: 0.55; }
@keyframes welcome-glow-pulse {
    0%, 100% { opacity: 0.18; transform: scale(1); }
    50% { opacity: 0.32; transform: scale(1.03); }
}

.welcome-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
}
.shimmer-text {
    background: linear-gradient(100deg, var(--gold) 0%, color-mix(in srgb, var(--gold-light) 70%, transparent) 50%, var(--gold) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: welcome-shimmer 8s linear infinite;
}
@keyframes welcome-shimmer {
    to { background-position: 220% center; }
}

.welcome-title {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 4.4vw, 1.5rem);
    font-weight: 600;
    color: var(--gold-light);
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 24px rgba(191, 155, 88, 0.25);
}

.welcome-logo-gold {
    position: relative;
    z-index: 1;
    display: block;
    width: 56px;
    height: auto;
    margin: 4px auto 14px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(191, 155, 88, 0.35));
}

.welcome-logo-house {
    position: relative;
    z-index: 1;
    display: block;
    width: min(78vw, 300px);
    height: auto;
    margin: 4px auto 8px;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: drop-shadow(0 8px 22px rgba(191, 155, 88, 0.22));
}

.welcome-body {
    position: relative;
    z-index: 1;
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    line-height: 1.5;
    color: rgba(224, 224, 224, 0.9);
    text-align: center;
}
.welcome-body--lead { margin-bottom: 10px; }
.welcome-body--bullet {
    text-align: left;
    padding-left: 1.2rem;
    color: rgba(232, 226, 214, 0.82);
}
.welcome-body--bullet span { color: var(--gold); margin-right: 0.35rem; }
.welcome-body--end {
    margin-top: 12px;
    font-style: italic;
    color: var(--gold-light);
}

.welcome-wa-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(37, 211, 102, 0.28);
    background: rgba(37, 211, 102, 0.08);
    color: rgba(224, 224, 224, 0.88);
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.welcome-wa-note i { color: #25d366; margin-top: 2px; }
.welcome-wa-note:hover {
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.12);
}
.welcome-wa-expand {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(191, 155, 88, 0.2);
    animation: welcome-rise 0.4s ease both;
}
.welcome-wa-expand p {
    margin: 0 0 10px;
    font-size: 0.84rem;
    color: rgba(224, 224, 224, 0.8);
    line-height: 1.45;
}
.welcome-wa-router,
.welcome-cta-wa,
.welcome-enter {
    border: 1px solid rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.14);
    color: #d8f5e2;
    border-radius: 999px;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.welcome-enter {
    display: block;
    width: 100%;
    margin-top: 16px;
    border-color: rgba(191, 155, 88, 0.45);
    background: linear-gradient(110deg, rgba(168, 132, 62, 0.9), rgba(229, 204, 160, 0.95));
    color: #1a1510;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.welcome-portrait-wrap { position: relative; z-index: 1; margin: 6px auto 14px; width: 128px; }
.welcome-portrait-ring {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    padding: 3px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--gold-light), rgba(191, 155, 88, 0.2), var(--gold));
    box-shadow: 0 0 0 1px rgba(191, 155, 88, 0.25), 0 0 36px rgba(191, 155, 88, 0.35);
    animation: welcome-ring 4s ease-in-out infinite;
}
@keyframes welcome-ring {
    0%, 100% { box-shadow: 0 0 0 1px rgba(191, 155, 88, 0.25), 0 0 28px rgba(191, 155, 88, 0.3); }
    50% { box-shadow: 0 0 0 1px rgba(229, 204, 160, 0.45), 0 0 48px rgba(191, 155, 88, 0.55); }
}
.welcome-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
    display: block;
}
.welcome-role {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.55;
    color: rgba(224, 224, 224, 0.65);
}
.welcome-role-en { display: block; color: var(--gold-light); font-weight: 600; }
.welcome-role-fr { display: block; margin-top: 3px; color: rgba(224, 224, 224, 0.5); letter-spacing: 0.06em; }

.welcome-carousel {
    position: relative;
    height: 120px;
    margin: 0 0 14px;
    border-radius: 14px;
    overflow: hidden;
    opacity: 0.55;
    border: 1px solid rgba(191, 155, 88, 0.15);
}
.welcome-carousel.welcome-carousel--tall {
    opacity: 1;
}
.welcome-carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.1s ease;
}
.welcome-carousel-img.is-on { opacity: 1; }

.welcome-quote-card {
    position: relative;
    z-index: 1;
    padding: 18px 16px 12px;
    border-radius: 18px;
    background:
      linear-gradient(155deg, rgba(255, 215, 140, 0.32) 0%, rgba(210, 155, 60, 0.26) 30%, rgba(160, 100, 40, 0.2) 60%, rgba(80, 50, 18, 0.55) 100%),
      radial-gradient(ellipse 80% 60% at 15% 10%, rgba(255, 235, 180, 0.22), transparent 55%),
      radial-gradient(ellipse 50% 50% at 85% 90%, rgba(200, 150, 60, 0.12), transparent 50%),
      rgba(32, 24, 14, 0.7);
    border: 1px solid rgba(235, 190, 110, 0.38);
    box-shadow:
      inset 0 1px 0 rgba(255, 240, 210, 0.2),
      inset 0 -1px 0 rgba(180, 130, 50, 0.12),
      0 14px 36px rgba(0, 0, 0, 0.28),
      0 0 40px -12px rgba(210, 165, 80, 0.12);
}
.welcome-quote-card::before {
    content: '“';
    position: absolute;
    top: 2px;
    left: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: rgba(191, 155, 88, 0.35);
}
.welcome-quote-inner {
    max-height: 6.8em;
    overflow: hidden;
    transition: max-height 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-quote-inner.is-expanded { max-height: 52em; }
.welcome-quote-p {
    margin: 0 0 0.8em;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(232, 226, 214, 0.9);
}
.welcome-quote-p.is-lead { color: #f0e9db; }
.welcome-quote-inner:not(.is-expanded) .welcome-quote-p:not(.is-lead),
.welcome-quote-inner:not(.is-expanded) .welcome-signature { visibility: hidden; }
.welcome-signature {
    margin: 0.3em 0 0;
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--gold-light);
    text-align: right;
}
.welcome-readmore {
    display: inline-flex;
    margin-top: 6px;
    border: none;
    background: transparent;
    color: var(--gold);
    font-family: 'Manrope', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 0;
}
.welcome-site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--gold);
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-decoration: none;
}
.welcome-site-link i { font-size: 0.68rem; opacity: 0.8; }

.welcome-pres-brand { text-align: center; margin-bottom: 12px; position: relative; z-index: 1; }
.welcome-riad-logo {
    width: 48px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    opacity: 0.95;
}
.welcome-pres-tag {
    margin: -6px 0 12px;
    font-size: 0.82rem;
    color: rgba(224, 224, 224, 0.55);
    text-align: center;
}
.welcome-pres-copy { position: relative; z-index: 1; }
.welcome-pres-block {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(224, 224, 224, 0.88);
}
.welcome-pres-h {
    margin: 14px 0 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--gold);
}
.welcome-rooms-label {
    margin: 16px 0 8px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
}
.welcome-room-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    margin-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.welcome-room-tabs::-webkit-scrollbar { display: none; }
.welcome-room-tab {
    flex: 0 0 auto;
    border: 1px solid rgba(191, 155, 88, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(224, 224, 224, 0.7);
    border-radius: 999px;
    padding: 8px 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    white-space: nowrap;
    cursor: pointer;
}
.welcome-room-tab.is-active {
    border-color: rgba(191, 155, 88, 0.55);
    background: rgba(191, 155, 88, 0.14);
    color: var(--gold-light);
}
.welcome-room-panel {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(191, 155, 88, 0.18);
    background: rgba(0, 0, 0, 0.25);
}
.welcome-room-name {
    margin: 0 0 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--gold-light);
}
.welcome-room-sub {
    margin: 0 0 8px;
    font-size: 0.78rem;
    color: rgba(224, 224, 224, 0.5);
}

.welcome-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 8px 0 14px;
}
.welcome-fact {
    text-align: center;
    padding: 10px 6px;
    border-radius: 12px;
    border: 1px solid rgba(191, 155, 88, 0.18);
    background: rgba(255, 255, 255, 0.03);
}
.welcome-fact span {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(224, 224, 224, 0.45);
    margin-bottom: 4px;
}
.welcome-fact strong {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-light);
}
.welcome-alert {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(180, 80, 70, 0.35);
    background: rgba(107, 43, 43, 0.18);
    margin-bottom: 12px;
}
.welcome-alert-title {
    margin: 0 0 6px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e0b4b0;
}
.welcome-alert-body {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(232, 226, 214, 0.88);
}
.welcome-dayuse {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(191, 155, 88, 0.22);
    background: rgba(255, 255, 255, 0.03);
}
.welcome-dayuse strong { display: block; color: var(--gold-light); }
.welcome-dayuse em {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    color: rgba(224, 224, 224, 0.55);
    margin: 2px 0;
}
.welcome-dayuse span { font-size: 0.84rem; color: rgba(224, 224, 224, 0.75); }

.welcome-actions { display: flex; flex-direction: column; gap: 12px; }
.welcome-action {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(191, 155, 88, 0.18);
    background: rgba(0, 0, 0, 0.22);
}
.welcome-action h3 {
    margin: 0 0 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
}
.welcome-action-sub {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: rgba(224, 224, 224, 0.5);
}
.welcome-action-opts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.welcome-action-opts button,
.welcome-action-link {
    text-align: left;
    border: 1px solid rgba(191, 155, 88, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(232, 226, 214, 0.9);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.welcome-action-opts button:hover,
.welcome-action-link:hover {
    border-color: rgba(191, 155, 88, 0.5);
    background: rgba(191, 155, 88, 0.1);
}
.welcome-action-link {
    margin-top: 8px;
    color: var(--gold);
    text-align: center;
    border-style: dashed;
}

.welcome-remote-replay {
    display: inline-flex;
    margin-top: 14px;
    border: 1px solid rgba(191, 155, 88, 0.35);
    background: rgba(191, 155, 88, 0.08);
    color: var(--gold-light);
    border-radius: 999px;
    padding: 8px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.welcome-slide.spark-in .welcome-title,
.welcome-slide.spark-in .welcome-body,
.welcome-slide.spark-in .welcome-portrait-wrap,
.welcome-slide.spark-in .welcome-quote-card,
.welcome-slide.spark-in .welcome-action {
    animation: welcome-rise 0.7s ease both;
}
@keyframes welcome-rise {
    from { opacity: 0; transform: translateY(12px); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-spark,
    .welcome-glow,
    .welcome-portrait-ring,
    .shimmer-text,
    .welcome-next-mini-shimmer,
    .welcome-slide.spark-in * { animation: none !important; }
    [data-reveal], [data-reveal].is-revealed {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }
    .welcome-track { transition: none; }
}

/* --- refinements v2 --- */
.welcome-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 4px 0 10px;
  padding: 6px 12px 4px;
  position: relative;
  z-index: 1;
  background: none;
}
.welcome-logos .welcome-logo-house {
  width: min(56vw, 200px);
  margin: 0;
}
.welcome-logo-gold {
    width: 88px !important;
    margin: 8px auto 16px !important;
}
.welcome-slide.is-active .welcome-logo-house {
  animation: welcomeHouseIn 1.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes welcomeHouseIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.84);
    filter: blur(12px) drop-shadow(0 0 0 rgba(191, 155, 88, 0));
  }
  58% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 12px 32px rgba(191, 155, 88, 0.45));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 10px 28px rgba(191, 155, 88, 0.38));
  }
}
.welcome-slide-wm {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(78%, 300px);
  transform: translate(-50%, -50%);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 50px rgba(191,155,88,0.12));
}
.welcome-slide-wm--pres {
  top: 58%;
  opacity: 0.045;
  width: min(88%, 340px);
}
.welcome-riad-logo {
  width: 72px !important;
  height: auto;
  margin: 0 auto 10px;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 0 18px rgba(191,155,88,0.35));
}
.welcome-nonsmoking {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px auto 4px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191,155,88,0.28);
  background: rgba(191,155,88,0.08);
  color: rgba(232,226,214,0.82);
  font-size: 0.78rem;
}
.welcome-nonsmoking i { color: #e5b86a; }

.welcome-elev-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(191,155,88,0.22);
  color: #f0d9a8;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: opacity 0.25s ease;
}
.welcome-elev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5b86a;
  box-shadow: 0 0 10px rgba(229,184,106,0.55);
  flex-shrink: 0;
}
.welcome-chap-pill.is-on {
  border-color: rgba(230,180,100,0.55) !important;
  background: rgba(191,155,88,0.18) !important;
  color: #f6edd8 !important;
}
.welcome-pres-sticky {
  position: relative;
  top: auto;
  z-index: 2;
  padding-top: 4px;
  background: transparent;
}

/* Wishes demo / stepper */
.welcome-wishes-lead {
  text-align: center;
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.45;
  color: rgba(240,233,219,0.9);
}
.welcome-how {
  margin: 12px 0 16px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(191,155,88,0.2);
  background: rgba(0,0,0,0.22);
}
.welcome-how-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.welcome-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232,226,214,0.45);
  transition: background 0.95s ease, color 0.95s ease, transform 0.95s ease, box-shadow 0.95s ease, border-color 0.95s ease;
}
.welcome-how-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191,155,88,0.3);
  font-size: 0.72rem;
  transition: background 0.95s ease, color 0.95s ease, border-color 0.95s ease, box-shadow 0.95s ease;
}
.welcome-how-step.is-on {
  color: #f0d9a8;
  background: rgba(191,155,88,0.14);
  transform: translateY(-2px);
}
.welcome-how-step.is-on span {
  background: linear-gradient(135deg, #e8c078, #bf9b58);
  color: #1a1208;
  border-color: transparent;
}
.welcome-how-step--choose.is-on {
  background: rgba(191,155,88,0.14);
  box-shadow: 0 0 0 1px rgba(212,160,80,0.18);
}
.welcome-how-step--carnet.is-on {
  background: rgba(120,150,180,0.14);
  color: #d8e6f2;
  box-shadow: 0 0 0 1px rgba(140,170,200,0.2);
}
.welcome-how-step--carnet.is-on span {
  background: linear-gradient(135deg, #9bb4c9, #6e8aa3);
  color: #0f1418;
}
.welcome-how-step--send.is-on {
  background: rgba(37,211,102,0.1);
  color: #c8efd6;
  box-shadow: 0 0 0 1px rgba(37,211,102,0.18);
}
.welcome-how-step--send.is-on span {
  background: linear-gradient(135deg, #4ad67e, #25d366);
  color: #0a1a10;
}
.welcome-how-cap {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(232,226,214,0.72);
  min-height: 2.6em;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.welcome-how-cap.is-fading {
  opacity: 0;
  transform: translateY(4px);
}
.welcome-wish-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 12px;
}
.welcome-wish-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 14px;
  border: 1px solid rgba(191,155,88,0.22);
  background: color-mix(in srgb, var(--gold) 8%, transparent);
  color: rgba(232,226,214,0.62);
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.7s ease, background 0.7s ease, color 0.7s ease, transform 0.7s ease, box-shadow 0.7s ease;
}
.welcome-wish-tab i { color: rgba(229,184,106,0.65); font-size: 0.95rem; transition: color 0.7s ease; }
.welcome-wish-tab.is-on {
  border-color: rgba(230,180,100,0.5);
  background: linear-gradient(160deg, rgba(212,160,80,0.28), rgba(60,45,20,0.4));
  color: #f6edd8;
}
.welcome-wish-tab.is-on i { color: #f0d090; }
.welcome-wish-panel {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(191,155,88,0.2);
  background: color-mix(in srgb, var(--gold) 6%, transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-wish-panel.is-on {
  opacity: 1;
  transform: translateY(0);
}
.welcome-wish-panel h3 {
  margin: 0 0 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: #f0d9a8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.welcome-wish-opts--places {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 8px;
}
.welcome-demo-menu {
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease, margin 0.3s ease;
}
.welcome-demo-menu.is-open {
  max-height: 720px;
  opacity: 1;
}
.welcome-demo-menu-title {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229,184,106,0.75);
}
.welcome-demo-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid rgba(191,155,88,0.18);
  background: rgba(255,255,255,0.03);
}
.welcome-demo-item-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.welcome-demo-item-text strong {
  font-size: 0.88rem;
  color: #f0e6d4;
}
.welcome-demo-item-text span {
  font-size: 0.72rem;
  color: rgba(232,226,214,0.55);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.welcome-demo-add {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,160,80,0.4);
  background: rgba(191,155,88,0.16);
  color: #f6edd8;
  font-size: 0.68rem;
  cursor: pointer;
}
.welcome-demo-add.is-added {
  border-color: rgba(90,160,110,0.5);
  background: rgba(90,160,110,0.2);
}
.welcome-carnet-tip {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(191,155,88,0.35);
  background: linear-gradient(135deg, rgba(191,155,88,0.16), rgba(40,30,16,0.4));
}
.welcome-carnet-tip.is-pop {
  animation: welcomeTipPop 0.55s ease;
}
@keyframes welcomeTipPop {
  0% { transform: scale(0.96); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.welcome-carnet-tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(191,155,88,0.2);
  color: #e5b86a;
  flex-shrink: 0;
}
.welcome-carnet-tip strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Cinzel', serif;
  color: #f0d9a8;
  font-size: 0.9rem;
}
.welcome-carnet-tip p {
  margin: 0 0 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(232,226,214,0.75);
}
.welcome-carnet-open {
  border: 0;
  background: transparent;
  color: #e5b86a;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.welcome-wishes-submit-sub {
  margin: 0 0 8px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(240,217,168,0.85);
}
.welcome-logo-riad {
  display: none !important;
}
.welcome-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 14px 0 8px;
  position: relative;
  z-index: 1;
}
.welcome-bullet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  max-width: 280px;
}
.welcome-bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 155, 88, 0.12);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(191, 155, 88, 0.2);
  font-size: 0.85rem;
}
.welcome-bullet p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: rgba(232, 226, 214, 0.9);
}

.welcome-slide--pres {
  display: block;
  padding: 56px 0 28px !important;
  overflow-y: auto !important;
  min-height: 0;
}
.welcome-pres-sticky {
  position: relative;
  top: auto;
  z-index: 2;
  flex-shrink: 0;
  padding: 0 16px 8px;
  background: transparent;
}
.welcome-pres-scroll {
  flex: none;
  overflow: visible !important;
  padding: 8px 20px 40px;
  scroll-behavior: smooth;
  min-height: 40vh;
}
.welcome-carousel--tall {
  height: min(44dvh, 400px);
  margin: 0 0 8px;
  opacity: 1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: #161310;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  overflow: hidden;
}
.welcome-carousel-slide.is-on { opacity: 1; }
.welcome-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform: scale(1.04);
  animation: welcome-kenburns 16s ease-in-out infinite alternate;
}
.welcome-carousel-slide.is-on img { animation-play-state: running; }
@keyframes welcome-kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.welcome-pres-card {
  margin: 0 0 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(191, 155, 88, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.welcome-pres-p {
  margin: 0 0 0.6em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(224, 224, 224, 0.9);
}
.welcome-pres-p:last-child { margin-bottom: 0; }
.welcome-rooms-intro {
  margin: 0 0 10px;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(224, 224, 224, 0.55);
  line-height: 1.45;
}
.welcome-room-tab {
  border-color: color-mix(in srgb, var(--room-accent, #bf9b58) 45%, transparent) !important;
  background: color-mix(in srgb, var(--room-accent, #bf9b58) 12%, transparent) !important;
}
.welcome-room-tab.is-active {
  border-color: var(--room-accent, #bf9b58) !important;
  background: color-mix(in srgb, var(--room-accent, #bf9b58) 28%, transparent) !important;
  box-shadow: 0 0 16px color-mix(in srgb, var(--room-accent, #bf9b58) 35%, transparent);
}
.welcome-room-teaser {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(224, 224, 224, 0.78);
}
.welcome-know-more {
  border: 1px dashed rgba(191, 155, 88, 0.4);
  background: transparent;
  color: var(--gold);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.welcome-room-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}
.welcome-room-overlay[hidden] { display: none !important; }
.welcome-room-dialog {
  position: relative;
  width: min(420px, 100%);
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 18px;
  padding: 18px 16px 20px;
  background: linear-gradient(180deg, #1c1a18, #0f0e0d);
  border: 1px solid rgba(191, 155, 88, 0.3);
}
.welcome-room-overlay-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: var(--gold-light);
  font-size: 1.4rem;
  cursor: pointer;
}
.welcome-room-dialog h3 {
  margin: 0 40px 6px 0;
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.welcome-read-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: rgba(229, 204, 160, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.welcome-read-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: welcome-nudge 1.8s ease-in-out infinite;
}
@keyframes welcome-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.welcome-info-card {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(191, 155, 88, 0.18);
  background: rgba(255,255,255,0.03);
}
.welcome-info-card h3 {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
}
.welcome-fact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 8px;
  font-size: 0.86rem;
}
.welcome-fact-row i { color: var(--gold); margin-top: 3px; width: 16px; }
.welcome-fact-row span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(224,224,224,0.45);
}
.welcome-fact-row strong {
  font-weight: 500;
  color: rgba(232, 226, 214, 0.92);
}
.welcome-facts--row { grid-template-columns: 1fr; }
.welcome-dayuse-label {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.welcome-dayuse p {
  margin: 6px 0 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(224,224,224,0.8);
}
.welcome-alert-meta {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: rgba(224,224,224,0.65);
}
.welcome-action h3 i { color: var(--gold); margin-right: 6px; }
.welcome-action-opts button i { margin-right: 6px; color: var(--gold-light); opacity: 0.85; }
.welcome-free-msg {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid rgba(191, 155, 88, 0.22);
  background: rgba(0,0,0,0.35);
  color: var(--text-main);
  padding: 10px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  resize: vertical;
  box-sizing: border-box;
}
.welcome-cta-wa i { margin-right: 6px; }

.reception-notice--action {
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.reception-notice--action:hover {
  border-color: rgba(191, 155, 88, 0.45);
  background: rgba(191, 155, 88, 0.12);
}


/* button Contacter = reception notice */
button.reception-notice {
  width: 100%;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.welcome-logos .welcome-logo-house {
  margin: 0;
  width: min(56vw, 200px);
}
.welcome-logos .welcome-logo-gold {
  margin: 0;
  width: 52px;
}
.welcome-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.welcome-ext-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(191,155,88,0.12);
}
.welcome-ext-cell strong {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 0.95rem;
}
.welcome-ext-cell span {
  font-size: 0.72rem;
  color: rgba(224,224,224,0.55);
  letter-spacing: 0.04em;
}
.welcome-carousel--tall {
  height: min(44dvh, 400px);
  opacity: 1;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-track-wrap {
  scroll-behavior: smooth;
}


/* --- stagger reveals --- */
.welcome-track {
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-slide {
  transition: opacity 0.9s ease, transform 0.9s ease !important;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(3px);
}
[data-reveal].is-revealed {
  animation: welcome-rise-soft var(--reveal-dur, 1.15s) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}
.welcome-pres-card {
  margin: 0 0 14px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(191, 155, 88, 0.18);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.045), transparent 55%),
    rgba(12, 11, 10, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 10px 28px rgba(0,0,0,0.18);
}
.welcome-pres-h {
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* --- breakfast menu & reserve --- */
.breakfast-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.breakfast-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1px solid rgba(191,155,88,0.35);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.breakfast-btn i { font-size: 0.85em; }
.breakfast-btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--gold-light);
}
.breakfast-btn--gold {
  background: linear-gradient(135deg, rgba(191,155,88,0.35), rgba(191,155,88,0.18));
  color: #f3e7c8;
  border-color: rgba(191,155,88,0.55);
}
.breakfast-btn:hover { transform: translateY(-1px); }

.info-schedule-row--breakfast {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.info-schedule-row--breakfast .info-schedule-right {
  width: 100%;
}

#modal-breakfast-menu .modal-panel,
#modal-breakfast-reserve .modal-panel {
  max-width: min(480px, 94vw);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(88dvh, 820px);
}
.breakfast-menu-panel { background: #141210; }
.breakfast-menu-hero {
  position: relative;
  height: 168px;
  flex-shrink: 0;
}
.breakfast-menu-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.9);
}
.breakfast-menu-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.15), rgba(20,18,16,0.92));
}
.breakfast-menu-hero-title {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin: 0;
  z-index: 2;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.breakfast-menu-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  border: none;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.45);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s;
}
.breakfast-menu-close:hover {
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
}
.breakfast-menu-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 18px 12px;
  -webkit-overflow-scrolling: touch;
}
.breakfast-serve-note {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(232,226,214,0.88);
  text-align: center;
}
.breakfast-section {
  margin: 0 0 14px;
  padding: 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(191,155,88,0.16);
  background: rgba(255,255,255,0.03);
}
.breakfast-section h3 {
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.breakfast-section ul {
  margin: 0;
  padding: 0 0 0 1rem;
  color: rgba(224,224,224,0.86);
  font-size: 0.88rem;
  line-height: 1.45;
}
.breakfast-allergy {
  margin: 8px 0 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(224,224,224,0.7);
  text-align: center;
}
.breakfast-price {
  margin: 0 0 8px;
  text-align: center;
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.breakfast-menu-sticky {
  flex-shrink: 0;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(191,155,88,0.18);
  background: linear-gradient(180deg, rgba(20,18,16,0.4), #141210);
  display: flex;
  justify-content: center;
}
.breakfast-reserve-panel {
  padding: 18px 16px 16px !important;
  background: #141210;
}
.breakfast-reserve-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(224,224,224,0.6);
}
.breakfast-reserve-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
.breakfast-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229,204,160,0.75);
}
.breakfast-field input,
.breakfast-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(191,155,88,0.22);
  background: rgba(0,0,0,0.35);
  color: var(--text-main, #e8e2d6);
  padding: 10px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
}
.breakfast-place {
  border: 1px solid rgba(191,155,88,0.18);
  border-radius: 14px;
  padding: 12px;
  margin: 0;
}
.breakfast-place legend {
  padding: 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229,204,160,0.75);
}
.breakfast-place-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  color: rgba(232,226,214,0.9);
  font-size: 0.9rem;
  cursor: pointer;
}
.breakfast-reserve-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

/* --- slide1 reveal: vif & naturel --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter: blur(1.5px);
}
[data-reveal].is-revealed {
  animation: welcome-rise-snap var(--reveal-dur, 0.48s) cubic-bezier(0.2, 0.85, 0.25, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes welcome-rise-snap {
  0% { opacity: 0; transform: translateY(12px) scale(0.98); filter: blur(2px); }
  70% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* --- présentation : chapitres + chambres slider --- */
.welcome-chap-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px 10px;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 8px, #000 calc(100% - 12px), transparent);
}
.welcome-chap-nav::-webkit-scrollbar { display: none; }
.welcome-chap-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(191,155,88,0.22);
  background: rgba(255,255,255,0.03);
  color: rgba(232,226,214,0.72);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.welcome-chap-pill.is-active,
.welcome-chap-pill:hover {
  border-color: rgba(191,155,88,0.55);
  background: rgba(191,155,88,0.14);
  color: var(--gold-light);
}
.welcome-chap-head {
  margin: 18px 0 10px;
  text-align: center;
}
.welcome-chap-head span {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.welcome-pres-chapter { margin-bottom: 6px; }

.welcome-rooms-stage {
  margin-top: 8px;
}
.welcome-rooms-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 18px;
}
.welcome-rooms-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.welcome-room-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px 14px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--room-accent, #bf9b58) 35%, transparent);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--room-accent, #bf9b58) 14%, transparent), transparent 50%),
    rgba(12, 11, 10, 0.5);
  position: relative;
  overflow: hidden;
}
.welcome-room-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--room-accent, #bf9b58), transparent);
  opacity: 0.85;
}
.welcome-room-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, margin 0.35s ease;
  margin-top: 0;
}
.welcome-room-detail.is-open {
  max-height: 2200px;
  opacity: 1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(191,155,88,0.16);
}
.welcome-room-detail-block {
  margin: 0 0 0.85em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(232,226,214,0.9);
}
.welcome-room-quote {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 2px solid var(--room-accent, #bf9b58);
  background: rgba(255,255,255,0.03);
  border-radius: 0 10px 10px 0;
}
.welcome-room-quote p {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(240,233,219,0.92);
}
.welcome-room-quote cite {
  font-size: 0.75rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* --- envies cochables + CTA premium --- */
.welcome-slide--wishes.is-active {
  padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px)) !important;
}
.welcome-wishes-hint {
  text-align: center;
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: rgba(224,224,224,0.62);
  line-height: 1.4;
}
.welcome-tremplin-how {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--gold-light, #e5cca0) 70%, transparent);
}
.welcome-tremplin-how i {
  font-size: 0.5rem;
  opacity: 0.45;
}
.welcome-wish-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.welcome-wish-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(191,155,88,0.18);
  background: rgba(255,255,255,0.025);
  color: rgba(232,226,214,0.86);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.welcome-wish-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.welcome-wish-opt i {
  width: 18px;
  color: var(--gold);
  opacity: 0.75;
}
.welcome-wish-opt.is-on {
  border-color: rgba(191,155,88,0.55);
  background: rgba(191,155,88,0.12);
  box-shadow: 0 0 0 1px rgba(191,155,88,0.12), inset 0 0 20px rgba(191,155,88,0.06);
}
.welcome-wish-opt.is-on i { opacity: 1; }
.welcome-wishes-footer {
  position: relative;
  bottom: auto;
  z-index: 6;
  margin-top: 14px;
  margin-bottom: 12px;
  padding: 8px 0 8px;
  background: none;
}
.welcome-wishes-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(191,155,88,0.55);
  border-radius: 999px;
  padding: 15px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: #f6edd8;
  cursor: pointer;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(191,155,88,0.42), rgba(120,90,40,0.35) 55%, rgba(191,155,88,0.28));
  box-shadow:
    0 10px 28px rgba(0,0,0,0.35),
    0 0 24px rgba(191,155,88,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.welcome-wishes-submit:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.4),
    0 0 30px rgba(191,155,88,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.welcome-wishes-submit i { font-size: 1.1rem; color: #25d366; }
.welcome-wishes-submit-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,244,212,0.1) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: welcome-shimmer 8s linear infinite;
  pointer-events: none;
}

.welcome-pres-sticky {
  background: transparent !important;
  padding-bottom: 2px !important;
}

.welcome-chap-dock {
  position: absolute;
  left: 0;
  right: 0;
  top: 46px;
  flex-shrink: 0;
  z-index: 8;
  padding: 0 16px 2px;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.98) 70%, rgba(20, 18, 16, 0.94));
  border-bottom: 1px solid rgba(191, 155, 88, 0.16);
  box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.45);
}
.welcome-chap-dock .h-scroll-hint {
  background: linear-gradient(90deg, transparent 0%, rgba(20, 18, 16, 0.98) 70%);
}
.welcome-chap-dock[hidden] {
  display: none !important;
}
.welcome-chap-dock .welcome-elev-bar {
  margin-bottom: 2px;
}
.welcome-chap-dock .welcome-chap-nav {
  padding-top: 2px;
  padding-bottom: 8px;
  padding-right: 40px;
}

/* Slide présentation — pied Suivant */
.welcome-pres-foot {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 6;
  padding: 10px 20px 18px;
  margin-top: 4px;
  background: linear-gradient(180deg, transparent, rgba(20,18,16,0.92) 28%, rgba(20,18,16,0.98));
}
.welcome-pres-next {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* CTA premium sobre */
.welcome-cta-premium,
.welcome-cta-wa.welcome-cta-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 105, 0.42);
  background:
    linear-gradient(160deg, rgba(232, 205, 150, 0.22), rgba(120, 90, 45, 0.18) 55%, rgba(40, 32, 20, 0.35));
  color: #f3e8d0;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 230, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.22);
  transition: border-color 0.35s ease, box-shadow 0.4s ease, transform 0.3s ease, background 0.4s ease;
}
.welcome-cta-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 246, 220, 0.14) 48%,
    rgba(255, 250, 235, 0.22) 50%,
    rgba(255, 246, 220, 0.12) 52%,
    transparent 65%
  );
  background-size: 240% 100%;
  animation: welcome-cta-shimmer 5.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.welcome-cta-premium > * { position: relative; z-index: 1; }
.welcome-cta-premium:hover {
  border-color: rgba(230, 190, 120, 0.58);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 230, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(191, 155, 88, 0.12);
}
.welcome-cta-premium.is-added {
  border-color: rgba(120, 160, 130, 0.45);
  background: linear-gradient(160deg, rgba(90, 140, 110, 0.22), rgba(30, 40, 32, 0.4));
  color: #d8efe0;
}
@keyframes welcome-cta-shimmer {
  0% { background-position: 120% 0; }
  40%, 100% { background-position: -40% 0; }
}

.welcome-next-mini-shimmer,
.welcome-wishes-submit-shimmer {
  background: linear-gradient(110deg, transparent 38%, rgba(255, 246, 220, 0.16) 50%, transparent 62%) !important;
  background-size: 260% 100% !important;
  animation: welcome-cta-shimmer 6.2s ease-in-out infinite !important;
}

.welcome-demo-add.is-added {
  border-color: rgba(120, 160, 130, 0.5);
  background: rgba(90, 140, 110, 0.22);
  color: #d8efe0;
}

@media (prefers-reduced-motion: reduce) {
  .welcome-cta-premium::after,
  .welcome-next-mini-shimmer,
  .welcome-wishes-submit-shimmer {
    animation: none !important;
  }
}



.welcome-demo-macaron {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(191,155,88,0.35);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.welcome-elixir-snacks-note {
  margin: 10px 2px 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: rgba(224,224,224,0.55);
  font-style: italic;
}
.welcome-rooms-section-label {
  margin: 14px 0 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  color: #f0d9a8;
  letter-spacing: 0.04em;
}
.welcome-room-features {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(191,155,88,0.18);
}
.welcome-room-features-title {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229,184,106,0.75);
}
.welcome-room-feat-meta {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: rgba(232,226,214,0.78);
  line-height: 1.4;
}
.welcome-room-highlights {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.welcome-room-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(191,155,88,0.22);
  background: rgba(191,155,88,0.08);
  font-size: 0.72rem;
  color: rgba(232,226,214,0.85);
}
.welcome-room-highlights li i {
  font-size: 0.6rem;
  color: var(--gold, #bf9b58);
}
.welcome-room-amenities-wrap {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(224,224,224,0.5);
}
.welcome-room-amenities-wrap summary {
  cursor: pointer;
  color: rgba(229,184,106,0.65);
  letter-spacing: 0.06em;
  padding: 4px 0;
}
.welcome-room-amenities-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.welcome-room-amenities-list li {
  font-size: 0.7rem;
  color: rgba(224,224,224,0.55);
}
.welcome-room-amenities-list li::before {
  content: '·';
  margin-right: 4px;
  color: rgba(191,155,88,0.4);
}
.welcome-room-card--yours {
  border-color: color-mix(in srgb, var(--room-accent, #bf9b58) 55%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--room-accent, #bf9b58) 15%, transparent);
}
.welcome-room-card--yours .welcome-room-detail.is-open {
  max-height: 2200px;
  opacity: 1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(191,155,88,0.16);
}

/* Bright mode — welcome tour (texte espresso, icônes nude) */
html[data-saba-theme="bright"] .welcome-skip {
  color: var(--text-muted);
}
html[data-saba-theme="bright"] .welcome-skip:hover {
  color: var(--text-main);
}

html[data-saba-theme="bright"] .welcome-role,
html[data-saba-theme="bright"] .welcome-role-fr,
html[data-saba-theme="bright"] .welcome-pres-p,
html[data-saba-theme="bright"] .welcome-quote-p,
html[data-saba-theme="bright"] .welcome-room-detail-block,
html[data-saba-theme="bright"] .welcome-dayuse,
html[data-saba-theme="bright"] .welcome-dayuse span,
html[data-saba-theme="bright"] .welcome-fact-row,
html[data-saba-theme="bright"] .welcome-action p,
html[data-saba-theme="bright"] .welcome-room-amenities-list li,
html[data-saba-theme="bright"] .welcome-room-card-meta,
html[data-saba-theme="bright"] .welcome-room-detail-label,
html[data-saba-theme="bright"] .welcome-room-detail-value,
html[data-saba-theme="bright"] .welcome-wish-hint,
html[data-saba-theme="bright"] .breakfast-reserve-copy,
html[data-saba-theme="bright"] .welcome-end-note {
  color: var(--saba-ink-soft) !important;
}

html[data-saba-theme="bright"] .welcome-role-en,
html[data-saba-theme="bright"] .welcome-chap-label,
html[data-saba-theme="bright"] .welcome-pres-title,
html[data-saba-theme="bright"] .welcome-quote-mark,
html[data-saba-theme="bright"] .welcome-room-name,
html[data-saba-theme="bright"] .welcome-action h3,
html[data-saba-theme="bright"] .welcome-end-title {
  color: var(--text-main) !important;
}

html[data-saba-theme="bright"] .welcome-body--bullet span,
html[data-saba-theme="bright"] .welcome-fact-row i,
html[data-saba-theme="bright"] .welcome-action h3 i,
html[data-saba-theme="bright"] .welcome-action-opts button i,
html[data-saba-theme="bright"] .welcome-wish-tab i,
html[data-saba-theme="bright"] .welcome-room-amenities-wrap summary,
html[data-saba-theme="bright"] .breakfast-btn i {
  color: var(--saba-nude) !important;
}

html[data-saba-theme="bright"] .welcome-logo-gold,
html[data-saba-theme="bright"] .welcome-logos .welcome-logo-gold {
  filter: sepia(0.35) saturate(0.85) brightness(0.92);
}

html[data-saba-theme="bright"] .welcome-room-card {
  background: rgba(255, 252, 244, 0.72);
  border-color: var(--saba-tile-border);
}
html[data-saba-theme="bright"] .welcome-room-card--yours {
  border-color: rgba(138, 101, 40, 0.42);
  box-shadow: 0 0 20px rgba(191, 155, 88, 0.12);
}

html[data-saba-theme="bright"] .welcome-wish-tab {
  background: rgba(255, 252, 244, 0.55);
  border-color: var(--saba-tile-border);
  color: var(--text-muted);
}
html[data-saba-theme="bright"] .welcome-wish-tab.is-on {
  background: rgba(191, 155, 88, 0.16);
  border-color: rgba(138, 101, 40, 0.38);
  color: var(--text-main);
}

html[data-saba-theme="bright"] .welcome-action-opts button {
  background: rgba(255, 252, 244, 0.72);
  border-color: var(--saba-tile-border);
  color: var(--text-main);
}

html[data-saba-theme="bright"] .welcome-cta-premium,
html[data-saba-theme="bright"] .breakfast-btn--gold {
  color: var(--saba-cta-fg) !important;
  background: var(--saba-cta-bg) !important;
  border-color: var(--saba-cta-border) !important;
}

html[data-saba-theme="bright"] .welcome-progress-dot {
  background: rgba(138, 101, 40, 0.22);
}
html[data-saba-theme="bright"] .welcome-progress-dot.is-on {
  background: var(--saba-nude);
}

html[data-saba-theme="bright"] .welcome-shimmer-title {
  background: linear-gradient(
    100deg,
    var(--gold) 0%,
    #6a4a1c 35%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    #6a4a1c 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-saba-theme="bright"] .welcome-tour-shell .fas,
html[data-saba-theme="bright"] .welcome-tour-shell .far,
html[data-saba-theme="bright"] .welcome-tour-shell .fab,
html[data-saba-theme="bright"] .welcome-tour-shell .fa-solid,
html[data-saba-theme="bright"] .welcome-tour-shell .fa-regular {
  color: var(--saba-nude) !important;
}

html[data-saba-theme="bright"] .welcome-nonsmoking i,
html[data-saba-theme="bright"] .welcome-carnet-tip-icon,
html[data-saba-theme="bright"] .welcome-bullet-icon,
html[data-saba-theme="bright"] .welcome-room-highlights li i,
html[data-saba-theme="bright"] .welcome-wish-opt i,
html[data-saba-theme="bright"] .welcome-replay-btn i {
  color: var(--saba-nude) !important;
}

html[data-saba-theme="bright"] .welcome-wish-tab.is-on i {
  color: var(--saba-nude) !important;
}

html[data-saba-theme="bright"] .welcome-intro-lead,
html[data-saba-theme="bright"] .welcome-intro-sub,
html[data-saba-theme="bright"] .welcome-chap-hint,
html[data-saba-theme="bright"] .welcome-pres-kicker,
html[data-saba-theme="bright"] .welcome-room-tag,
html[data-saba-theme="bright"] .welcome-room-blurb,
html[data-saba-theme="bright"] .welcome-room-spec,
html[data-saba-theme="bright"] .welcome-end-sub,
html[data-saba-theme="bright"] .welcome-breakfast-note,
html[data-saba-theme="bright"] .welcome-breakfast-time,
html[data-saba-theme="bright"] .breakfast-menu-note,
html[data-saba-theme="bright"] .welcome-wifi-copy,
html[data-saba-theme="bright"] .welcome-wifi-code {
  color: var(--saba-ink-soft) !important;
}

html[data-saba-theme="bright"] .welcome-intro-title,
html[data-saba-theme="bright"] .welcome-chap-title,
html[data-saba-theme="bright"] .welcome-quote-author,
html[data-saba-theme="bright"] .welcome-breakfast-title {
  color: var(--text-main) !important;
}

html[data-saba-theme="bright"] .welcome-shell-gradient {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
    linear-gradient(180deg, #fbf6ec 0%, #f3ead8 100%) !important;
}

html[data-saba-theme="bright"] .welcome-tour-shell {
  border-color: rgba(138, 101, 40, 0.22);
  color: var(--text-main);
}
html[data-saba-theme="bright"] .welcome-logo-house {
  mix-blend-mode: normal;
  filter: drop-shadow(0 8px 18px rgba(80, 50, 16, 0.16));
}
html[data-saba-theme="bright"] .welcome-title {
  text-shadow: none;
  color: var(--gold);
}
html[data-saba-theme="bright"] .welcome-body,
html[data-saba-theme="bright"] .welcome-body--bullet,
html[data-saba-theme="bright"] .welcome-body--end {
  color: var(--saba-ink-soft) !important;
}
html[data-saba-theme="bright"] .welcome-quote-card {
  background:
    linear-gradient(155deg, rgba(255, 250, 236, 0.96) 0%, rgba(244, 228, 196, 0.92) 100%);
  border-color: var(--saba-line);
  box-shadow: 0 14px 28px -16px rgba(80, 50, 16, 0.2);
}
html[data-saba-theme="bright"] .welcome-quote-p,
html[data-saba-theme="bright"] .welcome-quote-p.is-lead {
  color: var(--text-main) !important;
}
html[data-saba-theme="bright"] .welcome-how,
html[data-saba-theme="bright"] .welcome-elev-bar,
html[data-saba-theme="bright"] .welcome-nonsmoking {
  background: rgba(255, 252, 244, 0.72);
  border-color: var(--saba-tile-border);
  color: var(--text-main) !important;
}
html[data-saba-theme="bright"] .welcome-chap-pill.is-on {
  color: var(--text-main) !important;
  background: rgba(191, 155, 88, 0.18) !important;
}
html[data-saba-theme="bright"] .welcome-dot-bg {
  stroke: rgba(80, 50, 16, 0.45);
}
html[data-saba-theme="bright"] .welcome-dot-core {
  background: rgba(80, 50, 16, 0.45);
}
html[data-saba-theme="bright"] .welcome-wishes-lead,
html[data-saba-theme="bright"] .welcome-room-amenities-wrap,
html[data-saba-theme="bright"] .welcome-room-amenities-list li,
html[data-saba-theme="bright"] .welcome-demo-item-text span {
  color: var(--saba-ink-soft) !important;
}
html[data-saba-theme="bright"] .welcome-wa-note {
  color: var(--text-main);
}

/* Swipe cue — première slide, discret */
.welcome-swipe-hint {
  position: fixed;
  inset: auto 0 22%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  color: color-mix(in srgb, var(--gold-light, #f0d9a8) 70%, transparent);
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.welcome-swipe-hint-hand {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  background: color-mix(in srgb, var(--gold) 8%, rgba(0,0,0,0.18));
  font-size: 1.05rem;
  color: inherit;
  box-shadow: 0 0 18px rgba(191, 155, 88, 0.12);
}
.welcome-swipe-hint-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.welcome-swipe-hint.is-play {
  animation: welcomeSwipeCue 3.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes welcomeSwipeCue {
  0% { opacity: 0; }
  18% { opacity: 0.72; }
  62% { opacity: 0.55; }
  100% { opacity: 0; }
}
.welcome-swipe-hint.is-play .welcome-swipe-hint-hand {
  animation: welcomeSwipeHand 3.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes welcomeSwipeHand {
  0% { transform: translateX(22px); }
  22% { transform: translateX(0); }
  58% { transform: translateX(-28px); }
  100% { transform: translateX(-42px); }
}
.welcome-swipe-hint.is-persist {
  display: none;
  opacity: 0;
}
html[data-saba-theme="bright"] .welcome-swipe-hint {
  color: color-mix(in srgb, var(--gold) 55%, #3a2e22);
}
html[data-saba-theme="bright"] .welcome-swipe-hint-hand {
  background: rgba(255, 252, 246, 0.55);
  border-color: color-mix(in srgb, var(--gold) 28%, transparent);
  box-shadow: 0 4px 14px rgba(60, 40, 16, 0.08);
}
html[data-saba-theme="bright"] .welcome-swipe-hint-label {
  text-shadow: none;
}

/* Tour navbar */
.welcome-tour--peek-nav .welcome-tour-backdrop {
  bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}
/* Décale le tiroir vers le bas pour révéler l'icône settings en haut à droite */
.welcome-tour--peek-settings .welcome-tour-shell {
  transform: translateY(18%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-tour.active:not(.welcome-tour--peek-settings) .welcome-tour-shell {
  transform: translateY(0);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-nav-spot {
  position: fixed;
  z-index: 22500;
  pointer-events: none;
  border-radius: 22px;
  border: 2px solid rgba(240, 217, 168, 0.95);
  box-shadow:
    0 0 0 10px rgba(191, 155, 88, 0.18),
    0 0 36px rgba(191, 155, 88, 0.42);
  opacity: 0;
  transform: scale(0.86);
  transition: top 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.welcome-nav-spot.is-on {
  opacity: 1;
  transform: scale(1);
}
.bottom-nav-item.is-tour-glow {
  color: #f0d9a8 !important;
  z-index: 22600;
  opacity: 1;
  transform: scale(1.7);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.bottom-nav-item.is-tour-glow i {
  font-size: 1.85rem;
  color: var(--gold-light, #f0d9a8);
  filter: drop-shadow(0 0 12px rgba(212, 174, 106, 0.6));
  transition: font-size 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s, filter 0.3s;
  animation: welcomeNavSpark 1.2s ease-in-out infinite;
}
@keyframes welcomeNavSpark {
  0%, 100% { transform: translateY(-1px) scale(1); filter: drop-shadow(0 0 0 rgba(191,155,88,0)); }
  50% { transform: translateY(-3px) scale(1.12); filter: drop-shadow(0 0 10px rgba(191,155,88,0.7)); }
}
.welcome-nav-spot::after {
  content: '\f0a7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: auto;
  bottom: 100%;
  margin-bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.1rem;
  line-height: 1;
  color: var(--gold-light, #f0d9a8);
  animation: welcome-point-bounce 1.2s ease-in-out infinite;
  filter: drop-shadow(0 4px 14px rgba(191, 155, 88, 0.55));
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
@keyframes welcome-point-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes navtour-point-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
html[data-saba-theme="bright"] .welcome-nav-spot::after {
  color: #2a1e12;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.28));
  animation: navtour-point-down 0.9s ease-in-out infinite;
}

.welcome-slide--navtour {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.welcome-portrait-wrap--mini {
  width: 88px;
  margin: 0 auto 10px;
}
.welcome-portrait-wrap--mini .welcome-portrait-ring {
  width: 88px;
  height: 88px;
  padding: 2px;
  animation: none;
  box-shadow: 0 0 0 1px rgba(191, 155, 88, 0.28), 0 0 18px rgba(191, 155, 88, 0.18);
}
.welcome-portrait-wrap--mini .welcome-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}
.welcome-navtour-lead {
  margin: 4px 0 14px;
  max-width: 28em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(232, 226, 214, 0.82);
}
.welcome-navtour-card {
  width: 100%;
  padding: 16px 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(191, 155, 88, 0.28);
  background: linear-gradient(165deg, rgba(191, 155, 88, 0.12), rgba(20, 16, 12, 0.35));
  text-align: center;
  opacity: 1;
  transform: none;
}
.welcome-navtour-card.is-swap {
  animation: welcomeNavCard 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes welcomeNavCard {
  0% { opacity: 0.72; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.welcome-navtour-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(191, 155, 88, 0.16);
  color: var(--gold);
  font-size: 1.1rem;
}
.welcome-navtour-kicker {
  margin: 0 0 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 200, 140, 0.7);
}
.welcome-navtour-title {
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  font-size: 1.22rem;
  color: var(--gold-light, #f0d9a8);
}
.welcome-navtour-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(232, 226, 214, 0.86);
}
.welcome-navtour-extra {
  margin-top: 12px;
}
.welcome-navtour-caprice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191, 155, 88, 0.4);
  background: rgba(191, 155, 88, 0.12);
  color: #f0d9a8;
}
.welcome-navtour-caprice i {
  animation: welcomeWand 1.6s ease-in-out infinite;
  color: #e5cca0;
}
.welcome-navtour-caprice em {
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
@keyframes welcomeWand {
  0%, 100% { transform: rotate(-8deg) scale(1); filter: drop-shadow(0 0 0 rgba(229,204,160,0)); }
  50% { transform: rotate(10deg) scale(1.12); filter: drop-shadow(0 0 8px rgba(229,204,160,0.8)); }
}

.welcome-see-elixirs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px auto 0;
  padding: 8px 2px;
  border: 0;
  background: none;
  color: var(--gold-light, #e5cca0);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.welcome-see-elixirs i { font-size: 0.7rem; }

html[data-saba-theme="bright"] .welcome-navtour-card {
  background: rgba(255, 252, 244, 0.82);
  border-color: var(--saba-line);
}
html[data-saba-theme="bright"] .welcome-navtour-body,
html[data-saba-theme="bright"] .welcome-navtour-lead {
  color: var(--saba-ink-soft);
}
html[data-saba-theme="bright"] .welcome-navtour-title {
  color: var(--gold);
}
html[data-saba-theme="bright"] .welcome-tremplin-how {
  color: var(--saba-ink-soft);
}

/* Bright mode — full contrast pass */
html[data-saba-theme="bright"] .welcome-slide .welcome-title,
html[data-saba-theme="bright"] .welcome-slide .welcome-body,
html[data-saba-theme="bright"] .welcome-slide .welcome-kicker,
html[data-saba-theme="bright"] .welcome-slide .welcome-navtour-lead,
html[data-saba-theme="bright"] .welcome-slide .welcome-navtour-body,
html[data-saba-theme="bright"] .welcome-navtour-card {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-navtour-kicker,
html[data-saba-theme="bright"] .welcome-navtour-title {
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-pres-chapter,
html[data-saba-theme="bright"] .welcome-pres-lead,
html[data-saba-theme="bright"] .welcome-pres-item-label,
html[data-saba-theme="bright"] .welcome-rooms-intro,
html[data-saba-theme="bright"] .welcome-rooms-section-label {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-pres-item {
  background: rgba(243, 234, 216, 0.85);
  border-color: rgba(138, 101, 40, 0.22);
}
html[data-saba-theme="bright"] .welcome-pres-item-label {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-practical-card,
html[data-saba-theme="bright"] .welcome-practical-body {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-practical-card {
  background: rgba(251, 246, 236, 0.92);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-practical-icon {
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-wish-tab,
html[data-saba-theme="bright"] .welcome-wish-panel,
html[data-saba-theme="bright"] .welcome-wish-opt {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-wish-tab {
  background: rgba(243, 234, 216, 0.7);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-wish-tab.is-on {
  background: rgba(138, 101, 40, 0.15);
  border-color: var(--gold, #8a6528);
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-wish-panel {
  background: rgba(251, 246, 236, 0.88);
  border-color: rgba(138, 101, 40, 0.15);
}
html[data-saba-theme="bright"] .welcome-wish-opt {
  background: rgba(243, 234, 216, 0.65);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-wish-opt.is-on {
  border-color: var(--gold, #8a6528);
  background: rgba(138, 101, 40, 0.12);
}
html[data-saba-theme="bright"] .welcome-tremplin-how {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-bullet p,
html[data-saba-theme="bright"] .welcome-nonsmoking span,
html[data-saba-theme="bright"] .welcome-body--end {
  color: #3a2e20;
}

/* ── Language Switch ── */
.welcome-lang-switch {
  text-align: center;
  margin: 14px 0 8px;
}
.welcome-lang-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted, #b8a894);
  margin: 0 0 10px;
  line-height: 1.5;
}
.welcome-lang-toggle {
  display: inline-flex;
  position: relative;
  gap: 0;
  border-radius: 99px;
  background: color-mix(in srgb, var(--gold, #d4ae6a) 8%, rgba(255,255,255,0.04));
  border: 1px solid color-mix(in srgb, var(--gold) 25%, rgba(255, 255, 255, 0.1));
  padding: 3px;
  overflow: hidden;
}
.welcome-lang-btn {
  position: relative;
  z-index: 1;
  padding: 9px 22px;
  border: none;
  background: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted, #b8a894);
  cursor: pointer;
  border-radius: 99px;
  transition: color 0.35s ease, text-shadow 0.35s ease;
  white-space: nowrap;
}
.welcome-lang-btn.is-on {
  color: var(--gold-light, #f0d9a8);
  text-shadow: 0 0 12px rgba(212, 174, 106, 0.3);
}
.welcome-lang-thumb {
  position: absolute;
  top: 3px;
  height: calc(100% - 6px);
  border-radius: 99px;
  background: color-mix(in srgb, var(--gold, #d4ae6a) 22%, rgba(255,255,255,0.1));
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: left 0.38s cubic-bezier(0.22, 1, 0.36, 1), width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
html[data-saba-theme="bright"] .welcome-lang-toggle {
  background: rgba(243, 234, 216, 0.5);
  border-color: rgba(138, 101, 40, 0.2);
}
html[data-saba-theme="bright"] .welcome-lang-label {
  color: #5a4a36;
}
html[data-saba-theme="bright"] .welcome-lang-btn {
  color: #6a5a46;
}
html[data-saba-theme="bright"] .welcome-lang-btn.is-on {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-lang-thumb {
  background: color-mix(in srgb, var(--gold, #8a6528) 14%, rgba(255,255,255,0.35));
}
.welcome-pres-roya {
  text-align: center;
  padding: 24px 0 20px;
}
.welcome-pres-roya .welcome-portrait-wrap--mini {
  margin-bottom: 12px;
}
.welcome-pres-roya-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light, #f0d9a8);
  margin: 0 0 4px;
}
.welcome-pres-roya-role {
  font-size: 0.76rem;
  color: var(--text-muted, #b8a894);
  margin: 0;
  letter-spacing: 0.06em;
  font-style: italic;
}
html[data-saba-theme="bright"] .welcome-pres-roya-title {
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-pres-roya-role {
  color: #5a4a36;
}

/* ── Bright mode — Slide 3 (Saba's House) ── */
html[data-saba-theme="bright"] .welcome-pres-card {
  background: rgba(255, 252, 244, 0.88);
  border-color: rgba(138, 101, 40, 0.18);
  box-shadow: 0 8px 20px rgba(80, 50, 16, 0.08);
}
html[data-saba-theme="bright"] .welcome-pres-h {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-room-panel {
  background: rgba(255, 252, 244, 0.82);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-room-name {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-room-sub,
html[data-saba-theme="bright"] .welcome-room-teaser,
html[data-saba-theme="bright"] .welcome-pres-tag {
  color: #4a3a28 !important;
}
html[data-saba-theme="bright"] .welcome-rooms-label {
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-fact {
  background: rgba(255, 252, 244, 0.75);
  border-color: rgba(138, 101, 40, 0.16);
}
html[data-saba-theme="bright"] .welcome-fact span {
  color: #5a4a36;
}
html[data-saba-theme="bright"] .welcome-fact strong {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-room-tab {
  color: #4a3a28 !important;
}
html[data-saba-theme="bright"] .welcome-room-tab.is-active {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-room-quote {
  background: rgba(255, 252, 244, 0.72);
}
html[data-saba-theme="bright"] .welcome-room-quote p {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-room-feat-meta {
  color: #3a2e20;
}
html[data-saba-theme="bright"] .welcome-room-highlights li {
  color: #3a2e20;
  background: rgba(255, 252, 244, 0.7);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-ext-cell {
  background: rgba(255, 252, 244, 0.75);
  border-color: rgba(138, 101, 40, 0.16);
}
html[data-saba-theme="bright"] .welcome-ext-cell strong {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-ext-cell span {
  color: #5a4a36;
}
html[data-saba-theme="bright"] .welcome-know-more {
  color: var(--gold, #8a6528);
  border-color: rgba(138, 101, 40, 0.35);
}

/* ── Bright mode — Slide 4 (À savoir absolument) ── */
html[data-saba-theme="bright"] .welcome-info-card {
  background: rgba(255, 252, 244, 0.88);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-info-card h3 {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-fact-row strong {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-fact-row span {
  color: #5a4a36;
}
html[data-saba-theme="bright"] .welcome-alert {
  background: rgba(200, 80, 60, 0.08);
  border-color: rgba(180, 80, 70, 0.28);
}
html[data-saba-theme="bright"] .welcome-alert-title {
  color: #8b3a32;
}
html[data-saba-theme="bright"] .welcome-alert-body,
html[data-saba-theme="bright"] .welcome-alert-meta {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-dayuse {
  background: rgba(255, 252, 244, 0.82);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-dayuse strong {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-dayuse em {
  color: #5a4a36 !important;
}
html[data-saba-theme="bright"] .welcome-dayuse p {
  color: #3a2e20;
}
html[data-saba-theme="bright"] .welcome-dayuse-label {
  color: var(--gold, #8a6528);
}

/* ── Bright mode — Slide 5 (Le tremplin / Envies) ── */
html[data-saba-theme="bright"] .welcome-wishes-lead {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-wishes-hint {
  color: #4a3a28;
}
html[data-saba-theme="bright"] .welcome-how {
  background: rgba(255, 252, 244, 0.82);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-how-step {
  color: #5a4a36;
}
html[data-saba-theme="bright"] .welcome-how-step.is-on {
  color: #2a1e12;
  background: rgba(191, 155, 88, 0.14);
}
html[data-saba-theme="bright"] .welcome-how-cap {
  color: #3a2e20;
}
html[data-saba-theme="bright"] .welcome-wish-panel h3 {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-demo-item {
  background: rgba(255, 252, 244, 0.72);
  border-color: rgba(138, 101, 40, 0.16);
}
html[data-saba-theme="bright"] .welcome-demo-item-text strong {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-demo-menu-title {
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-carnet-tip {
  background: rgba(255, 252, 244, 0.88);
  border-color: rgba(138, 101, 40, 0.25);
}
html[data-saba-theme="bright"] .welcome-carnet-tip strong {
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-carnet-tip p {
  color: #3a2e20;
}
html[data-saba-theme="bright"] .welcome-carnet-open {
  color: var(--gold, #8a6528);
}
html[data-saba-theme="bright"] .welcome-wishes-submit-sub {
  color: #3a2e20 !important;
}
html[data-saba-theme="bright"] .welcome-demo-add {
  background: rgba(191, 155, 88, 0.14);
  border-color: rgba(138, 101, 40, 0.3);
  color: #2a1e12;
}
html[data-saba-theme="bright"] .welcome-elev-bar {
  color: #2a1e12 !important;
}
html[data-saba-theme="bright"] .welcome-action {
  background: rgba(255, 252, 244, 0.82);
  border-color: rgba(138, 101, 40, 0.18);
}
html[data-saba-theme="bright"] .welcome-action-sub {
  color: #4a3a28;
}
html[data-saba-theme="bright"] .welcome-elixir-snacks-note {
  color: #5a4a36;
}

/* Bouton header settings — highlight tour */
#headerSettingsBtn.is-tour-glow {
  transform: scale(1.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 22500;
  filter: drop-shadow(0 0 8px rgba(191, 155, 88, 0.7)) drop-shadow(0 0 16px rgba(191, 155, 88, 0.4));
}
#headerSettingsBtn.is-tour-glow::after {
  content: "\f0a6";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  color: var(--gold);
  animation: navtour-point-up 0.9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes navtour-point-up {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
html[data-saba-theme="bright"] #headerSettingsBtn.is-tour-glow::after {
  color: #2a1e12;
}

/* Slide 4 — intro conviviale */
.welcome-practical-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(229, 184, 106, 0.82);
  margin: 0 0 18px;
  text-align: center;
}
html[data-saba-theme="bright"] .welcome-practical-intro {
  color: rgba(120, 80, 20, 0.78);
}

/* Slide 5 — lien menu */
.welcome-menu-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0 4px;
  cursor: pointer;
  text-align: center;
  color: rgba(229, 184, 106, 0.78);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.welcome-menu-link:hover,
.welcome-menu-link:focus {
  color: var(--gold, #e5b86a);
  opacity: 1;
}
html[data-saba-theme="bright"] .welcome-menu-link {
  color: rgba(120, 80, 20, 0.72);
}
html[data-saba-theme="bright"] .welcome-menu-link:hover {
  color: rgba(100, 60, 10, 0.9);
}
