@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
    --bg-space: #17110b;
    --primary-cyan: #cf9b5e;
    --primary-glow: rgba(207, 155, 94, 0.3);
    --primary-dim: rgba(207, 155, 94, 0.09);
    --secondary-blue: #9c6b3a;
    --deep-navy: #1f160f;
    --espresso-gold: #b36022;
    --gold-glow: rgba(179, 96, 34, 0.35);
    --gold-dim: rgba(179, 96, 34, 0.1);
    --caramel: #d68743;
    --cream: #f5f1e8;
    --text-muted: #b8a895;
    
    --font-serif: 'Cinzel', serif;
    --font-display: 'Syne', sans-serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Normal system cursor (custom cursor removed for a real, usable feel) */
.cursor-dot,
.cursor-ring {
    display: none !important;
}
a, button, .filter-btn, .magnet-target, .luxury-card {
    cursor: pointer;
}

html {
    scroll-behavior: initial; /* Essential for Lenis smooth scroll */
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: var(--bg-space);
    color: var(--cream);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Lenis scroll classes */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overflow: clip;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-space);
}
::-webkit-scrollbar-thumb {
    background: var(--deep-navy);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
}

/* Cinematic Ambient Embers (Bokeh dust particles) */
.cinematic-embers {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    background: radial-gradient(circle, rgba(214, 135, 67, 0.10) 0%, rgba(214, 135, 67, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(26px); /* soft atmospheric glow, not a defined circle */
    animation: floatEmber 38s infinite linear;
    transform: translate3d(0, 0, 0); /* GPU acceleration */
}

.ember-cyan {
    background: radial-gradient(circle, rgba(207, 155, 94, 0.06) 0%, rgba(207, 155, 94, 0) 70%);
}

@keyframes floatEmber {
    0% {
        transform: translate3d(0, 105vh, 0) scale(1);
        opacity: 0;
    }
    8% {
        opacity: 0.16;
    }
    90% {
        opacity: 0.16;
    }
    100% {
        transform: translate3d(80px, -10vh, 0) scale(0.75);
        opacity: 0;
    }
}

/* Preloader styles */
.preloader {
    position: fixed;
    inset: 0;
    background-color: #010308;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader-wrap {
    text-align: center;
    width: 320px;
}

.preloader-kicker {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    margin-bottom: 12px;
    display: block;
}

.preloader-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--cream);
    margin-bottom: 30px;
}

.preloader-title .gold {
    color: var(--espresso-gold);
}

.preloader-bar-wrap {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    margin-bottom: 15px;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
    transition: width 0.1s ease;
}

.preloader-loading-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* Custom Interactive Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--espresso-gold);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--espresso-gold);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--primary-dim);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 4px rgba(207, 155, 94, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-text {
    font-family: var(--font-sans);
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg-space);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.3s, transform 0.3s;
}

/* Cursor Hover states */
body.hovering-link .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-cyan);
    box-shadow: 0 0 15px var(--primary-cyan);
}

body.hovering-link .cursor-ring {
    width: 58px;
    height: 58px;
    border-color: var(--primary-cyan);
    background-color: rgba(207, 155, 94, 0.04);
    box-shadow: 0 0 10px var(--primary-glow);
}

body.hovering-drag .cursor-dot {
    opacity: 0;
}

body.hovering-drag .cursor-ring {
    width: 70px;
    height: 70px;
    border-color: var(--espresso-gold);
    background-color: var(--espresso-gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

body.hovering-drag .cursor-text {
    opacity: 1;
    transform: scale(1);
}

/* Smooth Scroll Wrapper */
.scroll-wrapper {
    position: relative;
    z-index: 2;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    /* Cinematic fixed coffee backdrop: warm light pools + dark overlay + real photo */
    background:
        radial-gradient(ellipse 70% 55% at 12% 6%, rgba(156, 92, 40, 0.22), transparent 60%),
        radial-gradient(ellipse 60% 50% at 92% 42%, rgba(124, 72, 33, 0.17), transparent 58%),
        radial-gradient(ellipse 85% 60% at 50% 110%, rgba(98, 58, 27, 0.20), transparent 60%),
        linear-gradient(rgba(18, 12, 8, 0.88), rgba(15, 10, 6, 0.92)),
        url('beans.png');
    background-size: cover, cover, cover, cover, cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.05);
}

/* Subtle cinematic vignette to frame the whole experience */
.grid-overlay::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 90% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.section-spacer {
    padding: 140px 0;
    position: relative;
}

.section-kicker {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--primary-glow);
    margin-bottom: 15px;
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 70px;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.section-title span {
    color: var(--primary-cyan);
    font-style: italic;
}

/* Header & Nav */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    background: rgba(3, 8, 22, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(207, 155, 94, 0.04);
    transition: var(--transition);
}

.luxury-header.scrolled {
    height: 75px;
    background: rgba(3, 8, 22, 0.95);
    border-bottom: 1px solid rgba(207, 155, 94, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.brand-logo span {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-glow);
}

.brand-logo .gold {
    color: var(--espresso-gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--primary-cyan);
    box-shadow: 0 0 8px var(--primary-cyan);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-cyan);
}

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

/* Mobile Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 10002;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--cream);
    transition: var(--transition-fast);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Hero Section with Video Masking */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #010308;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24; /* low opacity to blend with background particles */
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
    z-index: 2;
}

/* Masked Video Title - The video plays inside the letters of HOLD & SIP */
.hero-text-mask-wrapper {
    margin-bottom: 25px;
    overflow: hidden;
}

.hero-masked-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.0;
    text-transform: uppercase;
    
    background-image: url('https://images.unsplash.com/photo-1507133750040-4a8f57021571?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    
    text-shadow: 0 0 40px rgba(207, 155, 94, 0.1);
    animation: panMask 25s infinite linear;
}

@keyframes panMask {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 2vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 45px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: var(--bg-space);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--cream);
    color: var(--bg-space);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(207, 155, 94, 0.35);
    color: var(--primary-cyan);
    background-color: rgba(207, 155, 94, 0.03);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 6px rgba(207, 155, 94, 0.05);
}

.btn-outline:hover {
    border-color: var(--espresso-gold);
    color: var(--espresso-gold);
    background-color: rgba(179, 96, 34, 0.03);
    box-shadow: inset 0 0 10px var(--gold-dim);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-cyan), transparent);
    box-shadow: 0 0 5px var(--primary-cyan);
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Horizontal Storytelling Section */
#story-pin {
    width: 100%;
    overflow: hidden;
}

.horizontal-scroll-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.horizontal-panels-wrap {
    display: flex;
    width: 300vw; /* 3 Panels total */
    height: 100%;
    will-change: transform;
}

.horizontal-panel {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 clamp(40px, 10%, 160px); /* generous, guaranteed gutters so headings never touch screen edges */
    box-sizing: border-box;
    overflow: hidden; /* keep each panel's content inside its own boundary — no bleed into neighbors */
}

.panel-content {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    min-width: 0;
}

.panel-content > * {
    min-width: 0; /* let grid children shrink instead of overflowing */
}

@media (max-width: 992px) {
    .panel-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
}

.panel-kicker {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    margin-bottom: 12px;
    display: block;
}

.panel-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--cream);
    line-height: 1.15;
    overflow-wrap: anywhere; /* never overflow its column */
}

.panel-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}

.panel-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(207, 155, 94, 0.12);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
    aspect-ratio: 16/10;
    width: 100%;
}

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

/* Molecular Section (Shader layout) */
.molecular-section {
    background: transparent;
    border-top: 1px solid rgba(207, 155, 94, 0.04);
    border-bottom: 1px solid rgba(207, 155, 94, 0.04);
}

.molecular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .molecular-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.molecular-card {
    background: rgba(8, 26, 46, 0.12);
    border: 1px solid rgba(207, 155, 94, 0.06);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    backdrop-filter: blur(15px);
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.molecular-card:hover {
    border-color: rgba(207, 155, 94, 0.25);
    background: rgba(8, 26, 46, 0.22);
}

.mol-card-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--espresso-gold);
    line-height: 1.0;
}

.mol-card-info h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--cream);
}

.mol-card-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

/* Shader placeholder box - tracks boundaries */
.shader-placeholder-box {
    border: 1px solid rgba(179, 96, 34, 0.15);
    background: rgba(179, 96, 34, 0.02);
    border-radius: var(--radius-lg);
    height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.displaced-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    filter: url(#liquid-filter);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s;
    opacity: 0.65;
    z-index: 1;
}

.shader-placeholder-box:hover .displaced-image {
    transform: scale(1.04);
    opacity: 0.85;
}

.shader-instructions {
    text-align: center;
    z-index: 5;
    pointer-events: none;
    position: relative;
    background: rgba(3, 8, 22, 0.6);
    padding: 16px 28px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 96, 34, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.shader-instructions span {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--espresso-gold);
    text-shadow: 0 0 5px var(--gold-glow);
    display: block;
    margin-bottom: 8px;
}

.shader-instructions p {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Menu Filter Bar */
.menu-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(207, 155, 94, 0.02);
    border: 1px solid rgba(207, 155, 94, 0.1);
    padding: 12px 28px;
    border-radius: 30px;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--primary-cyan);
    border-color: rgba(207, 155, 94, 0.35);
}

.filter-btn.active {
    background: var(--primary-cyan);
    color: var(--bg-space);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Menu Grid layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Luxury Card - Museum Exhibit Style */
.luxury-card {
    background: rgba(8, 26, 46, 0.15);
    border: 1px solid rgba(207, 155, 94, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(15px);
    transition: var(--transition), border-color 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 460px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
}

.luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(207, 155, 94, 0.04), transparent 70%);
    pointer-events: none;
    transition: var(--transition);
}

.luxury-card:hover {
    border-color: rgba(207, 155, 94, 0.3);
    box-shadow: 0 0 25px rgba(207, 155, 94, 0.04), 0 20px 40px rgba(0,0,0,0.6);
}

.luxury-card:hover::before {
    background: radial-gradient(circle at top left, rgba(207, 155, 94, 0.12), transparent 70%);
}

.card-media-wrap {
    width: 100%;
    height: 190px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    transform: translateZ(25px);
    border: 1px solid rgba(207, 155, 94, 0.04);
}

.card-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover .card-media-wrap img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(3, 8, 22, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(207, 155, 94, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--primary-cyan);
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateZ(15px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.card-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--espresso-gold);
    text-shadow: 0 0 5px var(--gold-glow);
}

.card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgba(207, 155, 94, 0.05);
    padding-top: 15px;
    transform: translateZ(10px);
}

.card-volume {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.card-action {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.card-action svg {
    transition: transform 0.3s;
}

.card-action:hover {
    color: var(--cream);
    text-shadow: 0 0 8px var(--primary-cyan);
}

.card-action:hover svg {
    transform: translateX(4px);
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(to bottom, #17110b, #07172d, #17110b);
    border-top: 1px solid rgba(207, 155, 94, 0.04);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.cinzel-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 20px;
}

.cinzel-title span {
    color: var(--primary-cyan);
    font-style: italic;
}

.reservation-p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.concierge-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.3rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--primary-glow);
    margin-top: 2px;
}

.feature-item h5 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

.reservation-form-card {
    background: rgba(8, 26, 46, 0.15);
    border: 1px solid rgba(207, 155, 94, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input, .form-select {
    background: rgba(3, 8, 22, 0.6);
    border: 1px solid rgba(207, 155, 94, 0.12);
    border-radius: var(--radius-sm);
    color: var(--cream);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-select:focus {
    border-color: var(--primary-cyan);
    background: rgba(207, 155, 94, 0.02);
    box-shadow: 0 0 10px var(--primary-dim);
}

/* Modal dialogs */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 3, 8, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-space);
    border: 1px solid var(--primary-cyan);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 35px var(--primary-dim);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Luxury Footer */
.luxury-footer {
    background: #010307;
    border-top: 1px solid rgba(207, 155, 94, 0.04);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-col p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 300;
}

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

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(207, 155, 94, 0.15);
    background: rgba(207, 155, 94, 0.01);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(207, 155, 94, 0.04);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-cyan);
}

/* Mobile responsive navigation overlay active state */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(3, 8, 22, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10001;
        border-left: 1px solid rgba(207, 155, 94, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.15rem;
        letter-spacing: 0.25em;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-cyan);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-cyan);
    }
}
