/* ============================================
   QUEENS HARBOUR — Luxury Restaurant Redesign
   ============================================ */

/* --- CSS Variables --- */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --charcoal: #1a1a1a;
    --dark: #222222;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #cccccc;
    --cream: #f5f0eb;
    --cream-dark: #e8e0d6;
    --white: #ffffff;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --gold-dark: #b8935a;
    --gold-muted: rgba(201, 169, 110, 0.15);

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    --container: 1340px;
    --gutter: clamp(20px, 4vw, 60px);
}

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

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

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* --- Container --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.lead-text {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--cream-dark);
    margin-bottom: 1.5rem;
}

.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 40px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 110, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

.btn-large {
    padding: 22px 52px;
    font-size: 0.85rem;
}

/* =====================
   PRELOADER — Crown Split & Merge
   ===================== */
body.loading {
    overflow: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader.fade-out {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

#preloader.done {
    display: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* --- Logo Container --- */
.preloader-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
}

/* Each half is a full-size copy, clipped to show only its side */
.preloader-half {
    position: absolute;
    inset: 0;
}

.preloader-half img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Left crown half — shows left spikes, starts far left + rotated outward */
.preloader-half.left {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    opacity: 0;
    transform: translateX(-140px) rotate(-12deg);
    animation: crownMergeLeft 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Right crown half — shows right spikes, starts far right + rotated outward */
.preloader-half.right {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    opacity: 0;
    transform: translateX(140px) rotate(12deg);
    animation: crownMergeRight 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes crownMergeLeft {
    0% {
        transform: translateX(-140px) rotate(-12deg);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    60% {
        transform: translateX(-4px) rotate(-1deg);
        opacity: 1;
    }
    80% {
        /* slight overshoot past center then snap back */
        transform: translateX(3px) rotate(0.5deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes crownMergeRight {
    0% {
        transform: translateX(140px) rotate(12deg);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    60% {
        transform: translateX(4px) rotate(1deg);
        opacity: 1;
    }
    80% {
        transform: translateX(-3px) rotate(-0.5deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Gold flash on merge impact */
.preloader-logo-container::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25) 0%, rgba(201, 169, 110, 0.08) 40%, transparent 70%);
    opacity: 0;
    transform: scale(0.3);
    animation: mergeFlash 0.8s ease 1.9s forwards;
}

@keyframes mergeFlash {
    0% { opacity: 0; transform: scale(0.3); }
    40% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.8); }
}

/* Subtle scale pulse after merge completes */
.preloader-logo-container {
    animation: crownSettle 0.5s ease 2.1s forwards;
}

@keyframes crownSettle {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* --- Brand Text --- */
.preloader-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(12px);
    animation: brandReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.3s forwards;
}

.preloader-brand-left,
.preloader-brand-right {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
}

.preloader-brand-divider {
    width: 28px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    animation: dividerGrow 0.7s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards;
}

@keyframes brandReveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dividerGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* =====================
   CUSTOM CURSOR
   ===================== */
.cursor-dot, .cursor-ring {
    display: none;
}

@media (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%) translateZ(0);
        will-change: left, top;
        transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    }

    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(201, 169, 110, 0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%) translateZ(0);
        will-change: left, top;
        transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    }

    body:has(a:hover) .cursor-dot,
    body:has(button:hover) .cursor-dot {
        width: 12px;
        height: 12px;
        background: var(--gold-light);
    }

    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
        width: 50px;
        height: 50px;
        border-color: var(--gold);
    }
}

/* =====================
   NAVIGATION
   ===================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--gutter);
    transition: all 0.5s var(--ease-out);
}

#navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out), -webkit-backdrop-filter 0.5s var(--ease-out);
    z-index: -1;
    will-change: backdrop-filter;
}

#navbar.scrolled::before {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#navbar.scrolled {
    padding-top: 0;
    padding-bottom: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1440px;
    margin: 0 auto;
    transition: height 0.5s var(--ease-out);
}

#navbar.scrolled .nav-container {
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.logo-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out), opacity 0.3s ease;
}

.nav-logo:hover .logo-icon-img {
    transform: scale(1.1);
    opacity: 0.85;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-lighter);
    position: relative;
    padding: 4px 0;
}

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

.nav-links a:hover {
    color: var(--white);
}

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

.nav-reserve {
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 10px 24px !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s ease !important;
}

.nav-reserve::after {
    display: none !important;
}

.nav-reserve:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.nav-phone {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--gray-light);
}

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

/* Hamburger */
.nav-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    gap: 6px;
    transition: border-color 0.3s ease;
}

.nav-menu-btn:hover {
    border-color: var(--gold);
}

.nav-menu-btn span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
}

.nav-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--black);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out);
}

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

.mobile-menu-content {
    width: 100%;
    padding: 120px var(--gutter) 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 0.07s);
}

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

.mobile-link::before {
    content: attr(data-index);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    min-width: 24px;
}

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

.mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid var(--gray-dark);
}

.mobile-menu-info p {
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.mobile-menu-info a {
    color: var(--gold);
}

.mobile-menu-social {
    display: flex;
    gap: 20px;
}

.mobile-menu-social a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.mobile-menu-social a:hover {
    color: var(--gold);
}

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.3) 40%,
        rgba(10, 10, 10, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--gutter);
    padding-bottom: 80px;
    max-width: 900px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
}

.hero-badge-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

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

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

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.7s; }
.hero-title-line:nth-child(2) { animation-delay: 0.9s; }
.hero-title-line:nth-child(3) { animation-delay: 1.1s; }

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--cream-dark);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 1.3s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 1.5s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 2s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================
   PHILOSOPHY
   ===================== */
.philosophy {
    background: var(--black);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.philosophy-left {
    position: sticky;
    top: 140px;
}

.philosophy-text p {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-dark);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.5;
}

/* =====================
   MARQUEE
   ===================== */
.marquee-section {
    overflow: hidden;
    padding: 30px 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
}

.marquee-item {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    will-change: transform;
    backface-visibility: hidden;
}

.marquee-item:hover img {
    transform: scale(1.08);
}

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

/* =====================
   MENU SECTION — Elevated Showcase
   ===================== */
.menu-section {
    background: var(--black-light);
}

.menu-showcase {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.menu-showcase-image {
    position: sticky;
    top: 120px;
}

.menu-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.menu-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), opacity 0.5s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.menu-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 40%);
    pointer-events: none;
}

.menu-image-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.menu-image-label-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    background: rgba(10, 10, 10, 0.8);
}

.menu-showcase-content .section-desc {
    margin-bottom: 2.5rem;
}

.menu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--gray-dark);
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.menu-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.menu-panel {
    display: none;
    animation: menuFadeIn 0.5s var(--ease-out);
}

.menu-panel.active {
    display: block;
}

@keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.menu-item:hover {
    padding-left: 12px;
    border-bottom-color: rgba(201, 169, 110, 0.15);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.menu-item-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.menu-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gray-dark);
    min-width: 20px;
    margin-bottom: 4px;
}

.menu-price {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--gold);
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.menu-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =====================
   COCKTAILS
   ===================== */
.cocktails-section {
    padding: 0;
    background: var(--black);
}

.cocktails-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.cocktails-image {
    position: relative;
    overflow: hidden;
}

.cocktails-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cocktails-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 100px);
}

.cocktails-content .section-title {
    margin-bottom: 2rem;
}

.cocktail-highlights {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cocktail-item {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-dark);
}

.cocktail-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    display: inline;
}

.cocktail-price {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold);
    margin-left: 12px;
}

.cocktail-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 6px;
    line-height: 1.5;
}

/* =====================
   TEXT MARQUEE
   ===================== */
.text-marquee {
    overflow: hidden;
    padding: 32px 0;
    background: var(--gold);
}

.text-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
}

.text-marquee-track span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
}

.marquee-dot {
    font-size: 0.8rem !important;
    opacity: 0.5;
}

/* =====================
   QUEENS GARDEN
   ===================== */
.garden-section {
    padding: 0;
    background: var(--black);
}

.garden-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.garden-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
}

.garden-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.4) 100%);
}

.garden-hero-content {
    position: absolute;
    bottom: 60px;
    left: var(--gutter);
    z-index: 2;
    max-width: 600px;
}

.garden-tagline {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--cream-dark);
    line-height: 1.7;
}

.garden-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: clamp(60px, 8vw, 100px) 0;
}

.garden-feature {
    position: relative;
}

.garden-feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold-muted);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 400;
}

.garden-feature h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.garden-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* =====================
   NIGHTLIFE & DJ
   ===================== */
.nightlife-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.nightlife-bg {
    position: absolute;
    inset: 0;
}

.nightlife-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
    transform: translateZ(0);
}

.nightlife-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.nightlife-content {
    position: relative;
    z-index: 2;
    padding: clamp(80px, 10vw, 140px) 0;
}

.nightlife-header {
    margin-bottom: clamp(40px, 6vw, 80px);
    max-width: 600px;
}

.nightlife-intro {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--cream-dark);
    line-height: 1.7;
    margin-top: 1rem;
}

.nightlife-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.nightlife-card {
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid rgba(201, 169, 110, 0.15);
    background: rgba(10, 10, 10, 0.7);
    transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    will-change: transform;
    backface-visibility: hidden;
}

.nightlife-card:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-4px);
}

.nightlife-card-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.8;
}

.nightlife-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.nightlife-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.nightlife-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-day {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.schedule-dj {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--white);
}

.schedule-time {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--gold);
}

.nightlife-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nightlife-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
}

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

.nightlife-note {
    padding: 16px;
    border-left: 2px solid var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.nightlife-note span {
    font-size: 0.85rem;
    color: var(--cream-dark);
    font-style: italic;
}

.nightlife-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =====================
   PRIVATE EVENTS
   ===================== */
.events-section {
    background: var(--charcoal);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.events-spaces {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 2.5rem 0;
}

.event-space {
    padding: 24px;
    border: 1px solid var(--gray-dark);
    transition: all 0.4s ease;
}

.event-space:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.03);
}

.event-space h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 8px;
}

.event-space p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.events-images {
    position: relative;
    height: 600px;
}

.events-image-stack {
    position: relative;
    height: 100%;
}

.events-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 65%;
    object-fit: cover;
    z-index: 2;
}

.events-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 55%;
    object-fit: cover;
    border: 4px solid var(--charcoal);
    z-index: 3;
}

/* =====================
   GALLERY
   ===================== */
.gallery-section {
    background: var(--black);
    padding-bottom: clamp(60px, 8vw, 100px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 8px;
    padding: 0 var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    will-change: transform;
    backface-visibility: hidden;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    font-size: 1.5rem;
    color: var(--gold);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =====================
   RESERVE
   ===================== */
.reserve-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vw, 160px) 0;
}

.reserve-bg {
    position: absolute;
    inset: 0;
}

.reserve-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
}

.reserve-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
}

.reserve-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reserve-text {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.reserve-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.reserve-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.reserve-detail h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.reserve-detail p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--charcoal);
    padding: clamp(60px, 8vw, 100px) 0 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-dark);
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-logo-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.9;
}

.footer-logo-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    font-weight: 500;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 4px;
}

.footer-newsletter h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--gray-dark);
}

.newsletter-input {
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    width: 280px;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-btn {
    padding: 14px 20px;
    background: var(--gold);
    border: none;
    color: var(--black);
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--gold-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 4rem;
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a, .footer-col li {
    font-size: 0.9rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer-awards span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* =====================
   SCROLL ANIMATIONS (removed — content is always visible)
   ===================== */

/* =====================
   RESPONSIVE — Tablet
   ===================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-phone {
        display: none;
    }

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

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-left {
        position: static;
    }

    .menu-showcase {
        grid-template-columns: 1fr;
    }

    .menu-showcase-image {
        position: static;
    }

    .menu-image-wrapper {
        aspect-ratio: 16/9;
    }

    .cocktails-split {
        grid-template-columns: 1fr;
    }

    .cocktails-image {
        height: 50vh;
        min-height: 400px;
    }

    .cocktails-content {
        padding: clamp(40px, 6vw, 80px);
    }

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

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

    .events-images {
        height: 400px;
    }

    .garden-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .reserve-details {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================
   RESPONSIVE — Mobile
   ===================== */
@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.8rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-scroll {
        display: none;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 0.6rem;
    }

    .nightlife-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .nightlife-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .philosophy-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

    .events-spaces {
        grid-template-columns: 1fr;
    }

    .events-images {
        height: 350px;
    }

    .events-img-1 {
        width: 80%;
        height: 60%;
    }

    .events-img-2 {
        width: 60%;
        height: 50%;
    }

    .garden-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .reserve-details {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .reserve-actions {
        flex-direction: column;
        align-items: center;
    }

    .reserve-actions .btn {
        width: 100%;
        max-width: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-top {
        flex-direction: column;
    }

    .newsletter-input {
        width: 200px;
    }

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

    .marquee-item {
        width: 240px;
        height: 160px;
    }

    .text-marquee-track span {
        font-size: 1rem;
    }

    .cocktails-content .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section {
        padding: clamp(60px, 8vw, 100px) 0;
    }
}

@media (max-width: 400px) {
    .philosophy-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

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