/**
 * Sections — panels (foundation + panel stack)
 */

.panel-stack__item > .panel-hero {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-stack__item > .panel-intro {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.panel-stack__item > .panel-index {
    width: 100%;
    flex: 0 0 auto;
}

/* ========== PANEL INDEX SHELL (refactored) ========== */
.panel-index-shell {
    position: relative;
    width: 100%;
}

.panel-index-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel-index-sticky .panel-index__strip-wrap {
    flex: 0 0 auto;
}

.panel-index-sticky .panel-index__main-wrap {
    flex: 1;
    min-height: 0;
    height: auto;
}

.panel-index-content {
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    background: var(--color-bg);
}

/* Index panels: content flows top-to-bottom */

/* Extra space before footer — last content panel */
.panel-index--activities .panel-index__content-wrap,
.panel-stack__item--last-content .panel-index__content-wrap {
    padding-bottom: 8rem;
}

.panel-stack__item--footer {
    background: #f6f3e7;
}

.panel-stack__item--footer > .site-footer {
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ========== PANEL STYLES ========== */
.panel__header { margin-bottom: var(--space-md); }
.panel__index { display: block; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--color-muted); }
.panel__title { font-size: 1.5rem; margin: 0; }
.panel__heading { font-size: clamp(1.5rem, 4vw, 2.5rem); margin: var(--space-lg) 0; }
.panel__desc { max-width: 60ch; margin-bottom: var(--space-xl); color: var(--color-muted); }
.panel__cta { display: inline-block; color: var(--color-text); text-decoration: none; margin-top: var(--space-lg); }

/* ========== HERO ========== */
.panel-hero {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.panel-hero__video-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.panel-hero__video-wrap * {
    pointer-events: none;
}

.panel-hero__content,
.panel-hero__play-zone {
    pointer-events: auto;
}

.panel-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 22%,
        transparent 68%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

.panel-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    flex: 1;
    justify-content: center;
}

.panel-hero__logo {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
}

.panel-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.panel-hero__line { display: block; }

/* Play zone — bottom center */
.panel-hero__play-zone {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: var(--space-xl);
}

.panel-hero__play-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    opacity: 0.5;
    transition: opacity 0.35s ease;
}

.panel-hero.is-hover .panel-hero__play-hint {
    opacity: 1;
}

.panel-hero__play-label {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.panel-hero__droplet-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.panel-hero__droplet-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.4;
}

.panel-hero.is-hover .panel-hero__droplet-dot {
    opacity: 0.85;
}

.panel-hero__play {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.panel-hero__play:hover {
    opacity: 1;
}

.panel-hero__play:active {
    transform: scale(0.97);
}

.panel-hero__play-arc {
    width: 120px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-top: none;
    border-radius: 0 0 60px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.panel-hero__play:hover .panel-hero__play-arc {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.panel-hero.is-hover .panel-hero__play-arc {
    border-color: rgba(255, 255, 255, 0.95);
}

.panel-hero__play-icon {
    width: 32px;
    height: 32px;
    color: #fff;
}

.panel-hero__play-icon--play {
    margin-left: 4px;
}

/* Fullscreen mode — hide hero UI */
.panel-hero.is-fullscreen .panel-hero__content,
.panel-hero.is-fullscreen .panel-hero__play-zone {
    opacity: 0;
    pointer-events: none;
}

/* Fallback fullscreen overlay (when Fullscreen API denied) */
body.bali-page.hero-fallback-fullscreen .panel-hero__video-wrap {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

body.bali-page.hero-fallback-fullscreen .panel-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-fallback-overlay.is-visible {
    opacity: 1;
}

body.bali-page.hero-fallback-fullscreen .nav-left-trigger,
body.bali-page.hero-fallback-fullscreen .nav-right {
    visibility: hidden;
}

/* ========== INTRO ========== */
.panel-intro {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-2xl) 0;
    background: #0d1624;
}

.panel-intro__video-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.panel-intro__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.panel-intro__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 22, 36, 0.7) 0%,
        rgba(13, 22, 36, 0.5) 50%,
        rgba(13, 22, 36, 0.9) 100%
    );
    pointer-events: none;
}

.panel-intro__content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    display: block;
    padding: var(--space-lg) var(--space-xl);
    max-width: 56rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    flex-shrink: 0;
}

/* Philosophy section */
.panel-intro__philosophy {
    margin-bottom: var(--space-md);
}

.panel-intro__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.02em;
    color: #f5f5f0;
    margin: 0 0 var(--space-md);
}

.panel-intro__line { display: block; }

.panel-intro__divider {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 auto var(--space-md);
}

.panel-intro__philosophy-p {
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto var(--space-sm);
    max-width: 42ch;
}

.panel-intro__philosophy-p:last-child {
    margin-bottom: 0;
}

/* Highlights section */
.panel-intro__highlights {
    margin-top: var(--space-sm);
}

.panel-intro__subheading {
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 var(--space-sm);
}

.panel-intro__highlights-title {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--space-md);
    font-weight: 500;
}

.panel-intro__highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(80px, min-content);
    gap: var(--space-xs) var(--space-md);
    max-width: 48rem;
    margin: 0 auto;
}

.panel-intro__highlight-card {
    display: block;
    padding: var(--space-sm);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.25s ease, transform 0.2s ease;
    cursor: pointer;
    position: relative;
    text-align: center;
    line-height: 1.4;
}

.panel-intro__highlight-card:hover {
    color: #fff;
}

.panel-intro__highlight-card:hover .panel-intro__highlight-line {
    background: rgba(255, 255, 255, 0.6);
}

.panel-intro__highlight-line {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto var(--space-md);
}

.panel-intro__highlight-num {
    display: block;
    font-size: 0.5625rem;
    line-height: 1.4;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xs);
}

.panel-intro__highlight-label {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.panel-intro__highlight-header {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.panel-intro__highlight-desc {
    display: block;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

/* Panel index — horizontal list at bottom of intro (always visible) */
.panel-intro__index {
    position: absolute;
    bottom: var(--space-xl);
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 var(--space-xl);
    min-height: 24px;
}

.panel-intro__index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm) var(--space-lg);
    min-height: 24px;
}

.panel-intro__index-item {
    display: block;
}

.panel-intro__index-link {
    display: inline-block;
    text-decoration: none;
    color: #f5f5f0;
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
    font-family: var(--font-sans);
    transition: color 0.25s ease;
}

.panel-intro__index-link:hover {
    color: #fff;
}

.panel-intro__index-num {
    font-weight: 500;
    margin-right: 0.35em;
    color: rgba(255, 255, 255, 0.8);
}

.panel-intro__index-label {
    font-family: var(--font-display);
}


/* ========== INDEX PANELS (Hotels, Pools, Restaurants, Spa, Activities) ========== */
.panel-index {
    background: var(--color-bg);
}

.panel-index__strip-wrap {
    height: 22vh;
    min-height: 140px;
    overflow: hidden;
}

.panel-index__strip {
    display: flex;
    gap: var(--space-md);
    height: 100%;
    animation: panel-index-strip-scroll 25s linear infinite;
}

.panel-index__strip-item {
    flex: 0 0 22vw;
    min-width: 200px;
}

.panel-index__strip-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@keyframes panel-index-strip-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.panel-index__main-wrap {
    position: relative;
    height: 65vh;
    min-height: 400px;
    overflow: hidden;
}

.panel-index__main {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left top;
}

.panel-index__main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl) var(--space-xl);
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 55%);
    color: #fff;
}

.panel-index__main-no {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.25em;
}

.panel-index__main-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 400;
    margin: 0 0 0.25em;
}

.panel-index__main-label {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

@media (min-width: 769px) {
    .panel-index__main-title {
        white-space: nowrap;
    }
}

.panel-index__content-wrap {
    padding: var(--space-2xl) var(--space-xl);
    max-width: 72rem;
    margin: 0 auto;
}

.panel-index__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 var(--space-md);
}

.panel-index__intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0 0 var(--space-2xl);
    max-width: 52ch;
}

.panel-index__subindex-list {
    list-style: none;
    margin: 0 0 var(--space-2xl);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.panel-index__subindex-link {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.panel-index__subindex-link:hover {
    border-color: rgba(255,255,255,0.3);
}

.panel-index__subindex-num {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--color-muted);
}

.panel-index__subindex-name {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.panel-index__carousels {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Scroll-margin for anchors — avoid sticky/fixed overlap */
#hotels,
#pools,
#restaurants,
#spa,
#activities {
    scroll-margin-top: 2rem;
}

.panel-index__carousel-section {
    scroll-margin-top: 2rem;
}

.panel-index__carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-xl);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 2.5rem;
}

/* Hide arrows; use swipe + dots on all screen sizes */
.panel-index__carousel-btn--prev,
.panel-index__carousel-btn--next {
    display: none;
}

.panel-index__carousel .panel-index__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: auto;
}

.panel-index__carousel-btn--prev {
    left: var(--space-sm);
}

.panel-index__carousel-btn--next {
    right: var(--space-sm);
}

.panel-index__carousel-track {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.panel-index__carousel-inner {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.panel-index__carousel-slide {
    flex: 0 0 580px;
    max-width: 75%;
    min-width: 320px;
    transform: scale(0.7);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.panel-index__carousel-slide.is-center {
    transform: scale(1.28);
}

.panel-index__carousel-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.panel-index__carousel-btn {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.35);
    color: #fff;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.panel-index__carousel-btn:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.5);
}

.panel-index__carousel-btn--prev::before {
    content: '<';
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
}

.panel-index__carousel-btn--next::before {
    content: '>';
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
}

.panel-index__carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    width: 100%;
}

.panel-index__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.panel-index__carousel-dot:hover {
    background: rgba(255,255,255,0.7);
}

.panel-index__carousel-dot.is-active {
    background: rgba(255,255,255,0.95);
    transform: scale(1.2);
}

.panel-index__carousel-content {
    padding-left: 0;
}

.panel-index__carousel-brand {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: var(--color-muted);
}

.panel-index__carousel-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: var(--space-xs) 0;
}

.panel-index__carousel-area {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.panel-index__carousel-title {
    font-size: 1rem;
    font-weight: 400;
    margin: var(--space-sm) 0 var(--space-md);
}

.panel-index__carousel-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0 0 var(--space-lg);
}

.panel-index__carousel-cta {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
}

.panel-index__cta {
    display: inline-block;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: var(--space-xl);
}

/* ========== FOOTER (AYANA-style dark theme) ========== */
.bali-page .site-footer {
    padding: var(--space-2xl) var(--space-xl);
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.9);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bali-page .site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.bali-page .site-footer a,
.bali-page .site-footer button {
    color: inherit;
}

/* Header row */
.site-footer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.site-footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.site-footer__logo-dots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.site-footer__logo-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.site-footer__logo-line {
    display: block;
    width: 14px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.site-footer__brand-name {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.site-footer__header-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.site-footer__rewards,
.site-footer__reservation {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__rewards:hover,
.site-footer__reservation:hover {
    color: #fff;
}

.site-footer__reserve-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer__reserve-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Nav columns */
.site-footer__nav {
    padding: var(--space-2xl) 0;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl) var(--space-3xl);
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.site-footer__section {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__section:last-child {
    border-bottom: none;
}

.site-footer__section-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--space-md);
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: var(--space-sm);
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.site-footer__link:hover {
    color: #fff;
}

.site-footer__link-main {
    flex: 1;
}

.site-footer__link-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__link-icon {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Bottom: Discover + Language */
.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.site-footer__discover,
.site-footer__lang-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__discover-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0 0 var(--space-md);
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-lg);
}

.site-footer__social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.site-footer__social-link:hover {
    color: #fff;
}

.site-footer__lang-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0 0 var(--space-md);
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__lang-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.site-footer__lang-option {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.site-footer__lang-option:hover {
    color: #fff;
}

/* Meta: Back to Home, Destinations, Legal */
.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md) var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.site-footer__back-home {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__back-home:hover {
    color: #fff;
}

.site-footer__destinations {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.site-footer__dest-link {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__dest-link:hover {
    color: #fff;
}

.site-footer__legal {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.site-footer__legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__copyright {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}
