/* ============================================
   OASIS DE HUACACHINA — Design System
   Creative Direction: Ultra-Luxury Desert Aesthetic
   Liquid Glass + Glassmorphism + Cursor Reactive
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Desert Color Palette */
    --sand-50: #FDF8F0;
    --sand-100: #F5E6D0;
    --sand-200: #E8C99B;
    --sand-300: #D4A574;
    --sand-400: #C2956B;
    --sand-500: #B8860B;
    --sand-600: #8B6914;
    --sand-700: #6B4F10;

    /* Oasis Greens */
    --oasis-100: #D4E8DB;
    --oasis-200: #8FC4A0;
    --oasis-300: #5B8C6E;
    --oasis-400: #3D6B4F;
    --oasis-500: #2A4D37;

    /* Night Sky — warm desert dark */
    --night-50: #E8EBF0;
    --night-100: #B0B8C8;
    --night-200: #6B7A94;
    --night-300: #3D4F6B;
    --night-400: #1e1810;
    --night-500: #140e08;
    --night-600: #0d0906;

    /* Accent */
    --accent: #D4A574;
    --accent-light: #E8C99B;
    --accent-dark: #8B6914;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-caption: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);

    /* Cursor */
    --cursor-size: 12px;
    --cursor-ring-size: 40px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--night-500);
    color: var(--sand-100);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
    position: relative;
}

/* --- Animated Desert Background Layers --- */
.desert-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.desert-bg-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.desert-bg-layer--sand {
    width: 70vw;
    height: 70vh;
    top: 20%;
    left: -10%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.25) 0%, rgba(184, 134, 11, 0.12) 50%, transparent 70%);
    animation: driftSand 20s ease-in-out infinite alternate;
}

.desert-bg-layer--amber {
    width: 60vw;
    height: 50vh;
    bottom: -5%;
    right: -15%;
    background: radial-gradient(ellipse, rgba(194, 140, 60, 0.22) 0%, rgba(160, 100, 30, 0.1) 50%, transparent 70%);
    animation: driftAmber 25s ease-in-out infinite alternate;
}

.desert-bg-layer--oasis {
    width: 50vw;
    height: 45vh;
    top: 50%;
    left: 40%;
    background: radial-gradient(ellipse, rgba(91, 140, 110, 0.18) 0%, rgba(42, 77, 55, 0.08) 50%, transparent 70%);
    animation: driftOasis 22s ease-in-out infinite alternate;
}

.desert-bg-layer--coral {
    width: 45vw;
    height: 40vh;
    top: 10%;
    right: 10%;
    background: radial-gradient(ellipse, rgba(210, 140, 100, 0.15) 0%, rgba(180, 100, 70, 0.06) 50%, transparent 70%);
    animation: driftCoral 18s ease-in-out infinite alternate;
}

.desert-bg-layer--sky {
    width: 55vw;
    height: 35vh;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(ellipse, rgba(120, 150, 200, 0.12) 0%, rgba(80, 110, 160, 0.05) 50%, transparent 70%);
    animation: driftSky 28s ease-in-out infinite alternate;
}

@keyframes driftSand {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    33% { transform: translate(10vw, -5vh) scale(1.15); opacity: 1; }
    66% { transform: translate(-5vw, 8vh) scale(0.9); opacity: 0.7; }
    100% { transform: translate(8vw, 3vh) scale(1.1); opacity: 0.9; }
}

@keyframes driftAmber {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(-12vw, -8vh) scale(1.2); opacity: 1; }
    100% { transform: translate(5vw, 5vh) scale(0.85); opacity: 0.8; }
}

@keyframes driftOasis {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    40% { transform: translate(-8vw, 6vh) scale(1.1); opacity: 0.9; }
    100% { transform: translate(6vw, -10vh) scale(1.2); opacity: 0.7; }
}

@keyframes driftCoral {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-6vw, 10vh) scale(1.15); opacity: 0.85; }
    100% { transform: translate(10vw, -3vh) scale(0.95); opacity: 0.65; }
}

@keyframes driftSky {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(8vw, -6vh) scale(1.1); opacity: 0.8; }
    100% { transform: translate(-5vw, 4vh) scale(1.05); opacity: 0.6; }
}

/* Dune Canvas — layered between bg and particles */
#duneCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

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

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

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-ring-size);
    height: var(--cursor-ring-size);
    border: 1.5px solid rgba(212, 165, 116, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo),
                height 0.4s var(--ease-out-expo),
                border-color 0.3s ease,
                background 0.3s ease;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
}

.cursor-dot.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.15);
    mix-blend-mode: normal;
}

.cursor-ring.cursor-hover {
    width: 80px;
    height: 80px;
    border-color: rgba(212, 165, 116, 0.3);
    background: rgba(212, 165, 116, 0.05);
}

/* --- Particle Canvas --- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* --- Grain Overlay --- */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* --- Glass Effects --- */
.glass-sm {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 1;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(212, 165, 116, 0.06),
        transparent 40%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover::after {
    opacity: 1;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-btn {
    background: rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.25);
    transition: all 0.4s var(--ease-out-expo);
}

.glass-btn:hover {
    background: rgba(212, 165, 116, 0.25);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.15),
                0 0 60px rgba(212, 165, 116, 0.08);
    transform: translateY(-2px);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    padding: 1rem 2rem;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 5px rgba(212, 165, 116, 0.3)); }
    50% { opacity: 0.7; filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6)); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-caption);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(245, 230, 208, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--sand-100);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    background: rgba(212, 165, 116, 0.12);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--accent-light);
    transition: all 0.4s var(--ease-out-expo);
}

.nav-link--cta:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.35);
    transform: translateY(-1px);
}

.nav-link--cta::after {
    display: none;
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--sand-100);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.mobile-menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--sand-100);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.4s; }

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 90%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.35) 0%, rgba(184, 134, 11, 0.15) 40%, transparent 70%);
    filter: blur(60px);
    animation: floatGradient1 12s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -10%;
    left: -15%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(91, 140, 110, 0.28) 0%, rgba(42, 77, 55, 0.12) 40%, transparent 70%);
    filter: blur(60px);
    animation: floatGradient2 15s ease-in-out infinite;
}

.hero-gradient-3 {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(210, 140, 100, 0.2) 0%, rgba(180, 120, 80, 0.1) 40%, transparent 70%);
    filter: blur(50px);
    animation: floatGradient3 18s ease-in-out infinite;
}

@keyframes floatGradient1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-5%, 8%) scale(1.1); }
    66% { transform: translate(3%, -5%) scale(0.95); }
}

@keyframes floatGradient2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(8%, -5%) scale(1.05); }
    66% { transform: translate(-3%, 8%) scale(1.1); }
}

@keyframes floatGradient3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8%, 5%) scale(1.15); }
}

.desert-waves {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    z-index: 1;
}

.desert-waves svg {
    display: block;
    width: 100%;
    height: 200px;
}

.wave {
    fill: var(--night-500);
    opacity: 0.3;
}

.wave-1 {
    animation: waveMove1 6s ease-in-out infinite;
    opacity: 0.4;
    fill: rgba(212, 165, 116, 0.3);
}

.wave-2 {
    animation: waveMove2 8s ease-in-out infinite;
    opacity: 0.35;
    fill: rgba(184, 134, 11, 0.2);
}

.wave-3 {
    animation: waveMove3 10s ease-in-out infinite;
    opacity: 0.5;
    fill: var(--night-500);
}

@keyframes waveMove1 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(-15px) scaleY(1.05); }
    50% { transform: translateX(-30px) scaleY(0.95); }
    75% { transform: translateX(-15px) scaleY(1.03); }
}

@keyframes waveMove2 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(10px) scaleY(0.97); }
    50% { transform: translateX(25px) scaleY(1.04); }
    75% { transform: translateX(10px) scaleY(0.98); }
}

@keyframes waveMove3 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    33% { transform: translateX(-12px) scaleY(1.02); }
    66% { transform: translateX(8px) scaleY(0.98); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 230, 208, 0.7);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--oasis-300);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(91, 140, 110, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(91, 140, 110, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line--accent {
    color: var(--accent);
    font-style: italic;
    text-shadow: 0 0 60px rgba(212, 165, 116, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(245, 230, 208, 0.65);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
    color: var(--sand-50);
}

.btn-primary svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

.btn-secondary {
    color: rgba(245, 230, 208, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--sand-100);
}

.hero-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    padding: 1rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
}

.stat-label {
    display: block;
    font-family: var(--font-caption);
    font-size: 0.75rem;
    color: rgba(245, 230, 208, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

.hero-scroll-indicator span {
    font-family: var(--font-caption);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245, 230, 208, 0.4);
}

/* --- Sections --- */
.section {
    position: relative;
    padding: var(--space-2xl) 2rem;
    z-index: 1;
}

/* Floating ambient orbs per section */
.section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, rgba(184, 134, 11, 0.05) 40%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    animation: sectionOrb 20s ease-in-out infinite alternate;
}

.section-experiences::before {
    background: radial-gradient(circle, rgba(91, 140, 110, 0.18) 0%, rgba(42, 77, 55, 0.06) 40%, transparent 70%);
    top: 20%;
    left: -10%;
    right: auto;
}

.section-gastronomy::before {
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, rgba(194, 140, 60, 0.08) 40%, transparent 70%);
    top: 5%;
}

.section-accommodation::before {
    background: radial-gradient(circle, rgba(107, 142, 194, 0.16) 0%, rgba(80, 110, 160, 0.06) 40%, transparent 70%);
    left: -15%;
    right: auto;
}

.section-info::before {
    background: radial-gradient(circle, rgba(194, 123, 107, 0.14) 0%, rgba(180, 100, 70, 0.05) 40%, transparent 70%);
}

@keyframes sectionOrb {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(-40px, 25px) scale(1.3); opacity: 1; }
    100% { transform: translate(30px, -20px) scale(0.85); opacity: 0.6; }
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-flex;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 208, 0.6);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title em {
    color: var(--accent);
    font-style: italic;
    text-shadow: 0 0 40px rgba(212, 165, 116, 0.2);
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 230, 208, 0.55);
    font-weight: 300;
    max-width: 750px;
    margin-top: 1.5rem;
}

/* --- Discover Section --- */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.discover-card {
    padding: 2.5rem;
    position: relative;
}

.discover-card > * {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--accent);
    opacity: 0.8;
}

.discover-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--sand-50);
}

.discover-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 230, 208, 0.6);
    font-weight: 300;
}

/* --- Experiences Section --- */
.experiences-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-item--reverse {
    direction: rtl;
}

.experience-item--reverse > * {
    direction: ltr;
}

.experience-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
}

.experience-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    z-index: 2;
    line-height: 1;
}

.experience-img {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-img-inner {
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-illustration {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.experience-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sand-50);
}

.experience-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 230, 208, 0.6);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.experience-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.8rem;
    color: rgba(245, 230, 208, 0.6);
}

.meta-item svg {
    opacity: 0.6;
}

/* --- Activity Cards Grid (new compact layout) --- */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.activity-card {
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.4s ease;
}

.activity-card > * {
    position: relative;
    z-index: 1;
}

.activity-card--highlight {
    border-color: rgba(212, 165, 116, 0.25);
    background: rgba(212, 165, 116, 0.04);
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.activity-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 165, 116, 0.12);
    line-height: 1;
}

.activity-badge {
    display: inline-flex;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.activity-badge--adrenaline {
    color: #e8a87c;
    background: rgba(232, 168, 124, 0.12);
    border: 1px solid rgba(232, 168, 124, 0.2);
}

.activity-badge--popular {
    color: var(--accent);
    background: rgba(212, 165, 116, 0.12);
    border: 1px solid rgba(212, 165, 116, 0.25);
}

.activity-badge--relax {
    color: var(--oasis-200);
    background: rgba(91, 140, 110, 0.1);
    border: 1px solid rgba(91, 140, 110, 0.2);
}

.activity-badge--exclusive {
    color: #b8a0d4;
    background: rgba(184, 160, 212, 0.1);
    border: 1px solid rgba(184, 160, 212, 0.2);
}

.activity-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sand-50);
    margin-bottom: 0.75rem;
}

.activity-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(245, 230, 208, 0.58);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.activity-details {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.activity-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.75rem;
    color: rgba(245, 230, 208, 0.55);
}

.activity-detail svg {
    opacity: 0.5;
}

/* Activity grid stagger */
.activity-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.activity-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.activity-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.activity-grid [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.activity-grid [data-reveal]:nth-child(6) { transition-delay: 0.4s; }

/* --- FAQ Section --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem 2.5rem;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sand-50);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(245, 230, 208, 0.55);
    font-weight: 300;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
}

/* FAQ stagger */
.faq-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.faq-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.faq-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.faq-grid [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.faq-grid [data-reveal]:nth-child(6) { transition-delay: 0.4s; }
.faq-grid [data-reveal]:nth-child(7) { transition-delay: 0.48s; }
.faq-grid [data-reveal]:nth-child(8) { transition-delay: 0.56s; }

/* --- Language Toggle --- */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: rgba(212, 165, 116, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.15);
    cursor: none;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.lang-toggle:hover {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.lang-toggle svg {
    opacity: 0.7;
}

.lang-toggle-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.lang-toggle-mobile:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.3);
}

/* --- Recommend CTAs --- */
.recommend-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* --- Info Section --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    padding: 2.5rem;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    color: var(--accent);
    flex-shrink: 0;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sand-50);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    font-size: 0.92rem;
    color: rgba(245, 230, 208, 0.6);
    font-weight: 300;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.info-list li strong {
    color: rgba(245, 230, 208, 0.85);
    font-weight: 500;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-map {
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 26, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.map-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.map-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
}

.map-line-h {
    width: 100%;
    height: 1px;
}

.map-line-h:nth-child(1) { top: 25%; }
.map-line-h:nth-child(2) { top: 50%; }
.map-line-h:nth-child(3) { top: 75%; }

.map-line-v {
    height: 100%;
    width: 1px;
}

.map-line-v:nth-child(4) { left: 25%; }
.map-line-v:nth-child(5) { left: 50%; }
.map-line-v:nth-child(6) { left: 75%; }

.map-pin {
    color: var(--accent);
    animation: mapPinBounce 2s ease-in-out infinite;
}

@keyframes mapPinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.map-coords {
    display: flex;
    gap: 2rem;
    font-family: var(--font-caption);
    font-size: 0.85rem;
    color: rgba(245, 230, 208, 0.4);
    letter-spacing: 0.1em;
}

.map-link {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    color: var(--accent);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sand-50);
    margin-bottom: 0.25rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: rgba(245, 230, 208, 0.55);
    font-weight: 300;
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: rgba(245, 230, 208, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
    background: rgba(212, 165, 116, 0.1);
    border-color: rgba(212, 165, 116, 0.2);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem 2rem;
    background: rgba(10, 10, 18, 0.5);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.15em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(245, 230, 208, 0.4);
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sand-100);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a {
    font-size: 0.88rem;
    color: rgba(245, 230, 208, 0.45);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 230, 208, 0.3);
    font-weight: 300;
}

.footer-credit {
    font-style: italic;
}

/* --- Recommendation Cards (Restaurants & Accommodation) --- */
.recommend-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.recommend-card {
    padding: 2.5rem;
    position: relative;
}

.recommend-card > * {
    position: relative;
    z-index: 1;
}

.recommend-card--featured {
    border-color: rgba(212, 165, 116, 0.2);
    background: rgba(212, 165, 116, 0.04);
}

.recommend-card--featured::before {
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
}

.recommend-badge {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(212, 165, 116, 0.12);
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin-bottom: 1.5rem;
}

.recommend-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.recommend-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.recommend-icon--food {
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    color: var(--accent);
}

.recommend-icon--stay {
    background: rgba(91, 140, 110, 0.1);
    border: 1px solid rgba(91, 140, 110, 0.15);
    color: var(--oasis-300);
}

.recommend-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sand-50);
    margin-bottom: 0.25rem;
}

.recommend-card--featured h3 {
    font-size: 1.6rem;
}

.recommend-subtitle {
    display: block;
    font-family: var(--font-caption);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.recommend-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(245, 230, 208, 0.6);
    font-weight: 300;
    margin-bottom: 1rem;
}

.recommend-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.recommend-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    font-family: var(--font-caption);
    font-size: 0.75rem;
    color: rgba(245, 230, 208, 0.6);
    letter-spacing: 0.02em;
}

.recommend-link {
    display: inline-flex;
}

/* Non-featured cards in row */
@media (min-width: 769px) {
    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .recommend-grid .recommend-card:not(.recommend-card--featured) {
        /* These will be side by side */
    }

    /* When there are 3 cards: 1 featured full-width + 2 side-by-side */
    .recommend-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .recommend-card--featured {
        grid-column: 1 / -1;
    }
}

/* Stagger reveals */
.recommend-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.recommend-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.discover-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.discover-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.discover-grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }

.hero-stats [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.hero-stats [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

.info-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.info-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.info-grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }


/* --- Responsive --- */
@media (max-width: 1024px) {
    .experience-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-item--reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    :root {
        --space-2xl: 6rem;
    }

    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat {
        padding: 0.8rem 1.2rem;
        min-width: 110px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section {
        padding: var(--space-2xl) 1.5rem;
    }

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

    .discover-card {
        padding: 2rem;
    }

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

    .recommend-card {
        padding: 2rem;
    }

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

    .activity-card {
        padding: 2rem;
    }

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

    .faq-item {
        padding: 1.75rem 2rem;
    }

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

    .lang-toggle {
        display: none;
    }

    .lang-toggle-mobile {
        display: inline-flex;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-grid {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Disable custom cursor on mobile */
    body { cursor: auto; }
    .cursor-dot,
    .cursor-ring,
    .cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .experience-meta {
        flex-direction: column;
    }

    .footer-links-grid {
        flex-direction: column;
    }
}

/* --- Selection --- */
::selection {
    background: rgba(212, 165, 116, 0.3);
    color: var(--sand-50);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--night-500);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 116, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 165, 116, 0.5);
}

/* --- Liquid Glass Shine Effect --- */
@keyframes liquidShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.glass-card:hover::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 25%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: liquidShine 1.5s ease-in-out;
}

/* --- Skip Navigation Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--night-500);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    z-index: 10001;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* --- Focus Visible (Keyboard Accessibility) --- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible,
.glass-btn:focus-visible,
.nav-link:focus-visible,
.nav-link--cta:focus-visible,
.lang-toggle:focus-visible,
.lang-toggle-mobile:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

.glass-card:focus-visible {
    outline: 2px solid rgba(212, 165, 116, 0.4);
    outline-offset: 2px;
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-line,
    .badge-dot,
    .logo-icon,
    .map-pin {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .desert-bg-layer,
    .hero-gradient-1,
    .hero-gradient-2,
    .hero-gradient-3 {
        animation: none;
    }

    .wave-1, .wave-2, .wave-3 {
        animation: none;
    }
}
