/* ════════════════════════════════════════════════════════════════
   B RESTOBAR — Premium Landing Page
   Design System: Dark Onyx + Gold Accents + Fine Lines
   ════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Colors */
    --bg-primary: #0E0E0E;
    --bg-secondary: #141414;
    --bg-tertiary: #1A1A1A;
    --bg-card: #161616;

    --gold: #C5A059;
    --gold-light: #D4AF37;
    --gold-dark: #A88A3D;
    --gold-glow: rgba(197, 160, 89, 0.15);
    --gold-line: rgba(197, 160, 89, 0.12);
    --gold-line-hover: rgba(197, 160, 89, 0.35);

    --text-primary: #F2F0EB;
    --text-secondary: #A8A8A8;
    --text-muted: #6B6B6B;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1280px;
    --container-padding: clamp(20px, 5vw, 80px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ─── UTILITY ─── */
.gold {
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}

.preloader-text {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
}

.preloader-percent {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 32px;
    letter-spacing: 4px;
    color: var(--text-primary);
    opacity: 0.8;
    min-width: 80px;
    text-align: center;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.15s ease-out;
}

@keyframes preloaderPulse {
    from {
        opacity: 0.3;
        transform: scaleX(0.5);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--container-padding);
    transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.nav.scrolled {
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: var(--container-max);
    margin: 0 auto;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: block;
    position: absolute;
    top: 0;
    left: var(--container-padding);
    padding: 0;
    margin: 0;
    line-height: 0;
    z-index: 10;
    transition: opacity var(--transition-base);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    display: block;
    width: 30px;
    height: auto;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

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

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

.nav-link--cta {
    color: var(--bg-primary);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 0;
    font-weight: 600;
    transition: background var(--transition-base), transform 0.2s ease;
}

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

.nav-link--cta:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

.nav-border {
    height: 1px;
    background: var(--gold-line);
    max-width: var(--container-max);
    margin: 0 auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-base);
    transform-origin: center;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    transition: color var(--transition-base);
}

.mobile-link:hover {
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════ */
.hero {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
    z-index: 3;
    /* Por encima del canvas fixed */
}

/* Mobile: Ajustes menores del Hero (el min-height 100vh se mantiene global) */
@media (max-width: 1023px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

/* Golden Grid Lines */
.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: var(--gold-line);
}

.grid-line--v {
    top: 0;
    bottom: 0;
    width: 1px;
}

.grid-line--h {
    left: 0;
    right: 0;
    height: 1px;
}

/* Golden corner accents */
.hero-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}

.hero-corner--tl {
    top: 40px;
    left: 40px;
    border-top: 1px solid var(--gold-line-hover);
    border-left: 1px solid var(--gold-line-hover);
}

.hero-corner--tr {
    top: 40px;
    right: 40px;
    border-top: 1px solid var(--gold-line-hover);
    border-right: 1px solid var(--gold-line-hover);
}

.hero-corner--bl {
    bottom: 40px;
    left: 40px;
    border-bottom: 1px solid var(--gold-line-hover);
    border-left: 1px solid var(--gold-line-hover);
}

.hero-corner--br {
    bottom: 40px;
    right: 40px;
    border-bottom: 1px solid var(--gold-line-hover);
    border-right: 1px solid var(--gold-line-hover);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.badge-text {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 10vw, 120px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
}

.hero-title-word {
    display: inline-block;
}

.hero-title-word--gold {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn--gold {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.3);
}

.btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 60%);
    transform: translateX(-100%);
    transition: none;
}

.btn--gold:hover .btn-shimmer {
    animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

.btn--outline {
    border: 1px solid var(--gold-line-hover);
    color: var(--gold);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    z-index: 10;
}

/* Pulsing ring */
.scroll-pulse-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    animation: scrollRingPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollRingPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(0.6);
        opacity: 0;
    }
}

/* Vertical line with animated fill */
.scroll-line-track {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    margin-top: -6px;
}

.scroll-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLineDrop 2s ease-in-out infinite;
}

@keyframes scrollLineDrop {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Text label */
.scroll-text {
    font-family: var(--font-accent);
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

/* Bouncing chevron */
.scroll-chevron {
    color: var(--gold);
    opacity: 0.6;
    animation: scrollChevronBounce 1.8s ease-in-out infinite;
}

@keyframes scrollChevronBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* Floating sushi image */
.hero-floating {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(250px, 35vw, 550px);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.hero-floating-img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
    transform: rotate(-15deg);
}

/* Hero gradient */
.hero-gradient--bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════
   CANVAS SCROLL SEQUENCE — Apple iPhone Style
   Mobile: canvas fixed + scroll container 500vh
   Desktop: hidden canvas, static image fallback
   ════════════════════════════════════════════════════════════════ */
.canvas-sequence-container {
    position: relative;
    height: 250vh;
    /* Duración del scroll */
    background: var(--bg-primary);
}

.sequence-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    /* Debajo del hero (z:3) */
    background: var(--bg-primary);
    pointer-events: none;
    /* Comienza oculto — se revela vía JS al entrar a la sección */
    opacity: 0;
}

/* Líneas doradas sobre el canvas */
.canvas-gold-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    /* Encima del canvas, debajo del hero */
    pointer-events: none;
    opacity: 0;
}

/* Desktop fallback: imagen elegante estática */
.canvas-desktop-fallback {
    display: none;
}

/* ── DESKTOP (≥1024px): Desactivar canvas, mostrar fallback ── */
@media (min-width: 1024px) {
    .canvas-sequence-container {
        height: auto;
        /* Sin scroll largo en desktop */
        min-height: 100vh;
        overflow: hidden;
    }

    .sequence-canvas {
        display: none !important;
        /* Sin canvas en desktop */
    }

    .canvas-gold-overlay {
        position: absolute;
        height: 100%;
        opacity: 1;
        /* Siempre visible en desktop */
    }

    .canvas-desktop-fallback {
        display: block;
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .canvas-fallback-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
    }

    .canvas-fallback-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(14, 14, 14, 0.4) 0%,
                rgba(14, 14, 14, 0.7) 60%,
                var(--bg-primary) 100%);
    }
}

/* ── Capa de contenido: Todas las secciones posteriores al canvas  ──
   deben tener z-index > 2 para cubrir el canvas fixed en mobile     */
.marquee-section,
.experience,
.immersive,
.gallery,
.locations,
.cta-section,
.footer {
    position: relative;
    z-index: 4;
    background: var(--bg-primary);
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════ */
.marquee-section {
    position: relative;
    z-index: 4;
    /* Encima del canvas fixed */
    overflow: hidden;
    padding: 0;
    background: var(--bg-secondary);
}

.marquee-border {
    height: 1px;
    background: var(--gold-line);
}

.marquee {
    padding: 24px 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.marquee-dot {
    color: var(--gold);
    font-size: 8px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ════════════════════════════════════════════════════════════════
   EXPERIENCE SECTION
   ════════════════════════════════════════════════════════════════ */
.experience {
    position: relative;
    padding: var(--section-padding) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
}

/* Section decorative lines */
.section-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gold-line);
}

.section-line--left {
    left: var(--container-padding);
}

.section-line--right {
    right: var(--container-padding);
}

/* Section Header */
.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.section-title--lg {
    font-size: clamp(42px, 6vw, 80px);
}

.section-desc {
    font-weight: 300;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 560px;
}

.experience-header {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.experience-header .section-tag {
    padding-left: 0;
}

.experience-header .section-tag::before {
    display: none;
}

.experience-header .section-desc {
    margin: 0 auto;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
}

.experience-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Image frame with golden corners */
.exp-img-wrapper {
    position: relative;
}

.exp-img-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.exp-img-frame:hover .exp-img {
    transform: scale(1.05);
}

/* Frame corners */
.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.frame-corner--tl {
    top: -1px;
    left: -1px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.frame-corner--tr {
    top: -1px;
    right: -1px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.frame-corner--bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.frame-corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

/* Text block */
.exp-number {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 64px;
    color: var(--gold-line);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.exp-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.exp-title em {
    color: var(--gold);
    font-weight: 400;
}

.exp-desc {
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.exp-text--right {
    text-align: right;
}

/* Divider */
.experience-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.divider-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.divider-diamond {
    color: var(--gold);
    font-size: 10px;
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ════════════════════════════════════════════════════════════════
   IMMERSIVE PARALLAX SECTION
   ════════════════════════════════════════════════════════════════ */
.immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.immersive-bg {
    position: absolute;
    inset: -20%;
    z-index: 0;
}

.immersive-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.immersive-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 14, 0.82);
    z-index: 1;
}

.immersive-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px clamp(30px, 6vw, 80px);
    max-width: 700px;
}

.immersive-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.frame-line {
    position: absolute;
    background: var(--gold-line-hover);
}

.frame-line--top {
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
}

.frame-line--bottom {
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
}

.frame-line--left {
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
}

.frame-line--right {
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
}

.immersive-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 28px;
}

.immersive-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.immersive-desc {
    font-weight: 300;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════════
   GALLERY STRIP
   ════════════════════════════════════════════════════════════════ */
.gallery {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.gallery-border {
    height: 1px;
    background: var(--gold-line);
}

.gallery-track {
    display: flex;
    gap: 2px;
    padding: 2px 0;
}

.gallery-item {
    flex: 0 0 33.333%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: brightness(0.7);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* ════════════════════════════════════════════════════════════════
   LOCATIONS
   ════════════════════════════════════════════════════════════════ */
.locations {
    position: relative;
    padding: var(--section-padding) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.locations-header {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
}

.locations-header .section-tag {
    padding-left: 0;
}

.locations-header .section-tag::before {
    display: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    position: relative;
    padding: 2px;
    background: var(--bg-card);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.location-card:hover {
    transform: translateY(-6px);
}

.location-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold-line);
    pointer-events: none;
    transition: border-color var(--transition-base);
}

.location-card:hover .location-card-border {
    border-color: var(--gold-line-hover);
}

.location-card-inner {
    padding: clamp(32px, 3vw, 48px);
    text-align: center;
    position: relative;
}

.location-number {
    font-family: var(--font-accent);
    font-weight: 200;
    font-size: 48px;
    color: rgba(197, 160, 89, 0.1);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.location-diamond {
    color: var(--gold);
    font-size: 10px;
    margin-bottom: 24px;
}

.location-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 4px;
}

.location-label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 24px;
}

.location-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.location-address {
    font-weight: 300;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.location-city {
    font-weight: 300;
    font-size: 13px;
    color: var(--text-muted);
}

.location-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.location-card:hover .location-glow {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: var(--section-padding) var(--container-padding);
    overflow: hidden;
    background: var(--bg-secondary);
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cta-content .section-tag {
    padding-left: 0;
}

.cta-content .section-tag::before {
    display: none;
}

.cta-content .section-desc {
    margin: 0 auto clamp(40px, 5vw, 64px);
}

/* CTA Cards */
.cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    position: relative;
    height: clamp(200px, 25vw, 300px);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform var(--transition-base);
}

.cta-card:hover {
    transform: translateY(-6px);
}

.cta-card-bg {
    position: absolute;
    inset: 0;
}

.cta-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.cta-card:hover .cta-card-img {
    transform: scale(1.08);
}

.cta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(14, 14, 14, 0.95) 0%,
            rgba(14, 14, 14, 0.6) 50%,
            rgba(14, 14, 14, 0.3) 100%);
    transition: background var(--transition-base);
}

.cta-card:hover .cta-card-overlay {
    background: linear-gradient(to top,
            rgba(14, 14, 14, 0.9) 0%,
            rgba(14, 14, 14, 0.4) 50%,
            rgba(14, 14, 14, 0.2) 100%);
}

.cta-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold-line);
    z-index: 2;
    pointer-events: none;
    transition: border-color var(--transition-base);
}

.cta-card:hover .cta-card-border {
    border-color: var(--gold);
}

.cta-card-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-card-icon {
    font-size: 28px;
}

.cta-card-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 16px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: color var(--transition-base);
}

.cta-card:hover .cta-card-title {
    color: var(--gold);
}

.cta-card-arrow {
    font-size: 20px;
    color: var(--gold);
    transition: transform var(--transition-base);
}

.cta-card:hover .cta-card-arrow {
    transform: translateX(6px);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    padding: 60px var(--container-padding) 40px;
    background: var(--bg-primary);
}

.footer-border {
    position: absolute;
    top: 0;
    left: var(--container-padding);
    right: var(--container-padding);
    height: 1px;
    background: var(--gold-line);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo-img {
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-link {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-dot {
    color: var(--gold);
    font-size: 6px;
}

.footer-bottom {
    text-align: center;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .experience-divider {
        flex-direction: row;
    }

    .divider-line {
        width: 120px;
        height: 1px;
    }

    .exp-text--right {
        text-align: left;
    }

    .experience-col:nth-child(3) {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-floating {
        right: -15%;
        width: 280px;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo-img {
        width: 24px;
    }

    .footer-logo-img {
        width: 32px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .hero-floating {
        display: none;
    }

    .hero-corner {
        width: 40px;
        height: 40px;
    }

    .hero-corner--tl,
    .hero-corner--bl {
        left: 16px;
    }

    .hero-corner--tr,
    .hero-corner--br {
        right: 16px;
    }

    .hero-corner--tl,
    .hero-corner--tr {
        top: 16px;
    }

    .hero-corner--bl,
    .hero-corner--br {
        bottom: 16px;
    }

    .gallery-item {
        flex: 0 0 70%;
    }

    .gallery-track {
        animation: galleryScroll 20s linear infinite;
    }

    @keyframes galleryScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-dot {
        display: none;
    }
}