/*
 * Theme Name: Maison 64 - Flatsome Child
 * Template: flatsome
 * Version: 1.0.0
 * Description: Child theme pentru Maison 64 - Private Event Mansion
 * Author: CM-Web Studio
 * Author URI: https://cm-web.ro
 */

/* ══════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════ */
:root {
    --m64-gold: #c6a55a;
    --m64-gold-light: #e2cb8b;
    --m64-gold-dark: #9e833e;
    --m64-black: #0a0a0a;
    --m64-black-soft: #111111;
    --m64-black-card: #161616;
    --m64-white: #fff;
    --m64-white-90: rgba(255,255,255,0.9);
    --m64-white-35: rgba(255,255,255,0.35);
    --m64-font-display: 'Cormorant Garamond', Georgia, serif;
    --m64-font-body: 'Montserrat', system-ui, sans-serif;
    --m64-radius: 0px;
    --m64-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════
   RESET FLATSOME OVERRIDES
   ══════════════════════════════════════ */
body {
    font-family: var(--m64-font-body) !important;
    background: var(--m64-black) !important;
    color: var(--m64-white) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

.m64-container,
.m64-container--narrow {
    max-width: 100%;
    box-sizing: border-box;
}

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

/* Hide Flatsome default header/footer on our templates */
.m64-page .header-wrapper,
.m64-page .header-main,
.m64-page .header-top,
.m64-page .header-bottom,
.m64-page .footer-wrapper,
.m64-page #wrapper > .header,
.m64-page #header,
.m64-page .absolute-footer,
.m64-page .has-transparent {
    display: none !important;
}

/* Kill Flatsome transparent header behavior */
.m64-page .header-wrapper.stuck,
.m64-page .header-wrapper.is-sticky {
    display: none !important;
}

/* Reset Flatsome container */
.m64-page .page-wrapper,
.m64-page #content,
.m64-page .page {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════ */

/* Fix Flatsome link hover override - prevent black on hover */
body.m64-page a:hover,
.m64-page a:hover,
html body.m64-page a:hover { color: var(--m64-gold-light); }
.m64-page .m64-btn-primary:hover,
.m64-page .m64-header-cta:hover,
body.m64-page .m64-btn-primary:hover,
body.m64-page .m64-header-cta:hover { color: var(--m64-black); }
.m64-page .m64-btn-secondary:hover,
body.m64-page .m64-btn-secondary:hover { color: var(--m64-gold) !important; }
.m64-page .m64-nav a:hover,
body.m64-page .m64-nav a:hover { color: var(--m64-gold) !important; }
.m64-page .m64-footer-links a:hover,
body.m64-page .m64-footer-links a:hover { color: var(--m64-gold) !important; }
.m64-page .m64-location-link:hover,
body.m64-page .m64-location-link:hover { color: var(--m64-gold-light) !important; }
.m64-page .m64-event-card-link:hover,
body.m64-page .m64-event-card-link:hover { color: var(--m64-gold-light) !important; }

/* Kill Flatsome CSS variable link hover */
.m64-page { --fs-experimental-link-color-hover: var(--m64-gold-light) !important; }

.m64-section-label {
    font-family: var(--m64-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--m64-gold);
    margin-bottom: 20px;
}

.m64-section-title {
    font-family: var(--m64-font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--m64-white);
}

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

.m64-text {
    font-family: var(--m64-font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--m64-white-90);
}

/* ══════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════ */
.m64-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px clamp(24px, 5vw, 60px) !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: var(--m64-black) !important;
    border-bottom: 1px solid rgba(198,165,90,0.08) !important;
}

.m64-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.m64-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.m64-logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

.m64-header.scrolled .m64-logo img {
    height: 32px;
}

.m64-logo-text {
    font-family: var(--m64-font-display);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--m64-white);
    text-decoration: none;
}

.m64-logo-text span {
    color: var(--m64-gold);
    font-weight: 600;
}

/* Desktop Navigation */
.m64-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.m64-nav a {
    font-family: var(--m64-font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-white-90);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

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

.m64-nav a:hover,
.m64-nav a.current {
    color: var(--m64-gold);
}

.m64-nav a:hover::after,
.m64-nav a.current::after {
    width: 100%;
}

/* Nav Dropdown */
.m64-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.m64-nav-dropdown > a::after {
    display: none;
}

.m64-nav-dropdown-toggle {
    font-family: var(--m64-font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-white-90);
    text-decoration: none;
    padding: 4px 0;
    margin: 0;
    cursor: pointer;
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    line-height: 1;
    vertical-align: baseline;
}

.m64-nav-dropdown-toggle svg {
    width: 10px; height: 10px;
    fill: none; stroke: currentColor; stroke-width: 2;
    transition: transform 0.3s ease;
}

.m64-nav-dropdown:hover .m64-nav-dropdown-toggle,
.m64-nav-dropdown-toggle:hover {
    color: var(--m64-gold);
}

.m64-nav-dropdown:hover .m64-nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.m64-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--m64-black);
    border: 1px solid rgba(198,165,90,0.12);
    padding: 10px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    z-index: 101;
}

.m64-nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0; right: 0;
    height: 12px;
}

.m64-nav-dropdown:hover .m64-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.m64-nav-dropdown-menu a {
    display: block;
    padding: 10px 24px !important;
    font-size: 0.7rem !important;
    letter-spacing: 2px !important;
    white-space: nowrap;
}

.m64-nav-dropdown-menu a::after {
    display: none !important;
}

.m64-nav-dropdown-menu a:hover {
    background: rgba(198,165,90,0.06);
}

/* Header CTAs wrapper */
.m64-header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Header CTA */
.m64-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--m64-font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m64-black) !important;
    background: linear-gradient(135deg, var(--m64-gold), var(--m64-gold-light));
    padding: 10px 24px;
    text-decoration: none;
    transition: all var(--m64-transition);
}

.m64-header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(198,165,90,0.3);
    color: var(--m64-black) !important;
}

/* Booking CTA variant - outline style */
.m64-header-cta--booking {
    background: transparent !important;
    border: 1px solid rgba(198,165,90,0.4) !important;
    color: var(--m64-gold) !important;
}

.m64-header-cta--booking svg {
    stroke: var(--m64-gold) !important;
    fill: none !important;
}

.m64-header-cta--booking:hover {
    background: rgba(198,165,90,0.1) !important;
    border-color: var(--m64-gold) !important;
    color: var(--m64-gold) !important;
    box-shadow: 0 8px 30px rgba(198,165,90,0.15);
}

/* Floating booking - text stays black on hover */
.m64-floating-booking,
.m64-floating-booking:hover {
    color: var(--m64-black) !important;
}

.m64-floating-booking svg,
.m64-floating-booking:hover svg {
    stroke: var(--m64-black) !important;
}

/* ══════════════════════════════════════
   FLOATING BOOKING BUTTON
   ══════════════════════════════════════ */
.m64-floating-booking {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--m64-gold), var(--m64-gold-light));
    color: var(--m64-black) !important;
    padding: 14px 24px;
    font-family: var(--m64-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(198,165,90,0.3);
    transition: all 0.4s ease;
}

.m64-floating-booking svg {
    stroke: var(--m64-black) !important;
    flex-shrink: 0;
}

.m64-floating-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(198,165,90,0.4);
    color: var(--m64-black) !important;
}

/* Mobile Menu Toggle */
.m64-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    align-self: center;
}

.m64-menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--m64-white);
    transition: all 0.3s ease;
    display: block;
}

.m64-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.m64-menu-toggle.active span:nth-child(2) { opacity: 0; }
.m64-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu Overlay */
.m64-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--m64-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.m64-mobile-menu > a,
.m64-mobile-menu > .m64-mobile-dropdown {
    margin-bottom: 0;
}

.m64-mobile-menu a {
    font-family: var(--m64-font-display);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--m64-white-90);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Mobile Dropdown */
.m64-mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m64-mobile-dropdown-toggle {
    font-family: var(--m64-font-display);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--m64-white-90);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 0;
	margin: 0 !important;
}

.m64-mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.m64-mobile-dropdown-toggle.active {
    color: var(--m64-gold);
}

.m64-mobile-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.m64-mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 10px 0 0;
}

.m64-mobile-dropdown-menu.open {
    display: flex;
}

.m64-mobile-dropdown-menu a {
    font-size: 1rem !important;
    letter-spacing: 3px !important;
    color: rgba(255,255,255,1) !important;
}

.m64-mobile-dropdown-menu a:hover {
    color: var(--m64-gold) !important;
}

/* Mobile menu phone button */
.m64-mobile-menu-phone {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 28px !important;
    border: 1px solid rgba(198,165,90,0.4) !important;
    color: var(--m64-gold) !important;
    font-family: var(--m64-font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.m64-mobile-menu-phone svg {
    fill: none;
    stroke: var(--m64-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.m64-mobile-menu-phone:hover {
    background: rgba(198,165,90,0.1) !important;
    border-color: var(--m64-gold) !important;
}

/* ══════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════ */
.m64-hero {
    position: relative;
    height: calc(100vh - 58px);
    min-height: 600px;
    margin-top: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.m64-hero-slider {
    position: absolute;
    inset: 0;
}

.m64-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.m64-hero-slide.active {
    opacity: 1;
}

.m64-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Subtle zoom on images */
.m64-hero-slide.active img.m64-hero-media {
    animation: m64HeroZoom 12s ease-out forwards;
}

@keyframes m64HeroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

/* Fallback when no slides */
.m64-hero-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--m64-black) 0%, #1a1510 50%, var(--m64-black) 100%);
}

.m64-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Main gradient overlay - vignette: dark center for text readability, lighter edges */
.m64-hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.2) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, transparent 15%, transparent 80%, rgba(10,10,10,0.85) 100%);
}

/* Noise texture */
.m64-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* Bottom fade to black for clean transition */
.m64-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--m64-black) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

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

.m64-hero-badge {
    display: inline-block;
    font-family: var(--m64-font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--m64-gold);
    padding: 10px 28px;
    border: 1px solid rgba(198,165,90,0.3);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: m64FadeUp 1s ease forwards 0.3s;
}

.m64-hero-title {
    font-family: var(--m64-font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--m64-white);
    opacity: 0;
    transform: translateY(30px);
    animation: m64FadeUp 1.2s ease forwards 0.5s;
}

.m64-hero-number {
    font-weight: 600;
    color: var(--m64-gold);
    letter-spacing: 2px;
}

.m64-hero-divider {
    width: 60px;
    height: 1px;
    background: var(--m64-gold);
    margin: 30px auto;
    opacity: 0;
    transform: scaleX(0);
    animation: m64LineReveal 1s ease forwards 0.8s;
}

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

.m64-hero-tagline {
    font-family: var(--m64-font-body);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--m64-white-90);
    margin-bottom: 16px;
    opacity: 0;
    animation: m64FadeUp 1s ease forwards 1s;
}

.m64-hero-subtitle {
    font-family: var(--m64-font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 300;
    font-style: italic;
    color: var(--m64-white-90);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: m64FadeUp 1s ease forwards 0.8s;
}

.m64-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: m64FadeUp 1s ease forwards 1s;
}

/* Hero Navigation */
.m64-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--m64-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.m64-hero-prev { left: 24px; }
.m64-hero-next { right: 24px; }

.m64-hero-arrow:hover {
    background: rgba(198,165,90,0.15);
    border-color: var(--m64-gold);
    color: var(--m64-gold);
}

.m64-hero-bullets {
    position: absolute !important;
    bottom: 90px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    background: rgba(10,10,10,0.4) !important;
    backdrop-filter: blur(10px);
    padding: 8px 16px !important;
    border-radius: 20px !important;
    border: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    top: auto !important;
    right: auto !important;
}

.m64-hero-bullet,
.m64-hero-bullets button {
    width: 6px !important;
    height: 6px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.3) !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    line-height: 1 !important;
    font-size: 0 !important;
    text-indent: -9999px !important;
}

.m64-hero-bullet.active,
.m64-hero-bullets button.active {
    width: 20px !important;
    height: 6px !important;
    border-radius: 3px !important;
    background: var(--m64-white) !important;
}

/* Scroll indicator - below bullets */
.m64-hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: m64FadeUp 1s ease forwards 1.5s;
}

.m64-hero-scroll span {
    font-family: var(--m64-font-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-white-35);
}

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

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

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.m64-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--m64-font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--m64-black);
    background: linear-gradient(135deg, var(--m64-gold), var(--m64-gold-light));
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all var(--m64-transition);
    position: relative;
    overflow: hidden;
}

.m64-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--m64-gold-light), #f0dfa0);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.m64-btn-primary:hover::before { opacity: 1; }
.m64-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(198,165,90,0.25);
    color: var(--m64-black) !important;
}

.m64-btn-primary span { position: relative; z-index: 1; }

.m64-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--m64-font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--m64-gold);
    padding: 16px 36px;
    border: 1px solid rgba(198,165,90,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    background: transparent;
}

.m64-btn-secondary:hover {
    background: rgba(198,165,90,0.08);
    border-color: var(--m64-gold);
    transform: translateY(-2px);
    color: var(--m64-gold);
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.m64-section {
    padding: clamp(80px, 12vw, 140px) clamp(24px, 8vw, 120px);
}

.m64-section--dark {
    background: var(--m64-black);
}

.m64-section--darker {
    background: var(--m64-black-soft);
}

.m64-section--centered {
    text-align: center;
}

.m64-container {
    max-width: 1200px;
    margin: 0 auto;
}

.m64-container--narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Decorative line */
.m64-decorative-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--m64-gold), transparent);
    margin: 0 auto 40px;
}

/* ══════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════ */
.m64-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: rgba(198,165,90,0.1);
    border: 1px solid rgba(198,165,90,0.1);
    max-width: 800px;
    margin: 50px auto 0;
}

.m64-feature {
    background: var(--m64-black);
    padding: 32px 20px;
    text-align: center;
}

.m64-feature-icon {
    font-family: var(--m64-font-display);
    font-size: 1.8rem;
    color: var(--m64-gold);
    margin-bottom: 12px;
    font-style: italic;
}

.m64-feature h4 {
    font-family: var(--m64-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-white);
    margin-bottom: 6px;
}

.m64-feature p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--m64-white-90);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   STATS (About Page)
   ══════════════════════════════════════ */
.m64-about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(198,165,90,0.12);
}

.m64-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m64-stat-number {
    font-family: var(--m64-font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--m64-gold);
    line-height: 1;
}

.m64-stat-label {
    font-family: var(--m64-font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m64-white-35);
}

/* ══════════════════════════════════════
   GALLERY GRID
   ══════════════════════════════════════ */
.m64-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 8px;
}

.m64-gallery-item {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

/* First image large */
.m64-gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.m64-gallery-item:nth-child(2) { grid-column: 3 / 4; }
.m64-gallery-item:nth-child(3) { grid-column: 4 / 5; }
.m64-gallery-item:nth-child(4) { grid-column: 3 / 4; }
.m64-gallery-item:nth-child(5) { grid-column: 4 / 5; }

.m64-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0, 0.25, 1);
}

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

.m64-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* Gallery Page - full grid */
.m64-gallery-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.m64-gallery-full .m64-gallery-item {
    height: 300px;
}

/* Gallery Page - Masonry Layout */
.m64-gallery-masonry {
    columns: 3;
    column-gap: 10px;
}

.m64-gallery-masonry-item {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    margin-bottom: 10px;
    break-inside: avoid;
    cursor: pointer;
}

.m64-gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0, 0.25, 1);
}

.m64-gallery-masonry-item:hover img {
    transform: scale(1.05);
}

.m64-gallery-masonry-item .m64-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* Clickable gallery items */
.m64-gallery-item[data-lightbox] {
    cursor: pointer;
}

/* Override Flatsome lightbox if present */
.m64-page .pswp,
.m64-page .mfp-wrap,
.m64-page .lg-outer {
    display: none !important;
}

/* ══════════════════════════════════════
   EVENTS SECTION
   ══════════════════════════════════════ */
.m64-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.m64-event-card {
    background: var(--m64-black-card);
    border: 1px solid rgba(198,165,90,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.m64-event-card:hover {
    border-color: rgba(198,165,90,0.2);
    transform: translateY(-4px);
}

.m64-event-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.m64-event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.m64-event-card:hover .m64-event-card-image img {
    transform: scale(1.05);
}

.m64-event-card-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--m64-gold);
    color: var(--m64-black);
    padding: 8px 14px;
    font-family: var(--m64-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.m64-event-card-body {
    padding: 24px;
}

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

.m64-event-card-body p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--m64-white-90);
    line-height: 1.7;
    margin-bottom: 20px;
}

.m64-event-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--m64-font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-gold);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.m64-event-card-link:hover {
    gap: 14px;
    color: var(--m64-gold-light);
}

.m64-event-card-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ══════════════════════════════════════
   LOCATION / MAP
   ══════════════════════════════════════ */
.m64-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.m64-location-address {
    font-family: var(--m64-font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--m64-white);
}

.m64-location-details {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--m64-white-90);
    line-height: 1.8;
    margin-bottom: 30px;
}

.m64-location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--m64-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-gold);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.m64-location-link:hover { gap: 14px; color: var(--m64-gold-light) !important; }

.m64-location-link svg {
    width: 14px; height: 14px;
    fill: none; stroke: currentColor; stroke-width: 2;
}

.m64-map-wrap {
    border: 1px solid rgba(198,165,90,0.1);
    overflow: hidden;
}

.m64-map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ══════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════ */
.m64-form {
    max-width: 700px;
    margin: 0 auto;
}

.m64-form-row {
    margin-bottom: 24px;
}

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

.m64-form label {
    display: block;
    font-family: var(--m64-font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m64-gold);
    margin-bottom: 8px;
}

.m64-form input,
.m64-form textarea,
.m64-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(198,165,90,0.15);
    color: var(--m64-white);
    font-family: var(--m64-font-body);
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    line-height: 1.4;
    height: auto;
    min-height: 48px;
}

.m64-form input:focus,
.m64-form textarea:focus,
.m64-form select:focus {
    border-color: var(--m64-gold);
    background: rgba(198,165,90,0.04);
}

.m64-form input::placeholder,
.m64-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.m64-form textarea {
    resize: vertical;
    min-height: 120px;
}

.m64-form select option {
    background: var(--m64-black);
    color: var(--m64-white);
}

.m64-form-submit {
    margin-top: 10px;
}

.m64-form-message {
    padding: 16px 20px;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 300;
    border-radius: 0;
}

.m64-form-message.success {
    background: rgba(198,165,90,0.1);
    border: 1px solid rgba(198,165,90,0.3);
    color: var(--m64-gold-light);
}

.m64-form-message.error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.3);
    color: #f5a0a8;
}

/* ══════════════════════════════════════
   CONTACT PAGE LAYOUT
   ══════════════════════════════════════ */
.m64-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.m64-contact-form-wrap {
    background: var(--m64-black-card);
    border: 1px solid rgba(198,165,90,0.08);
    padding: clamp(30px, 5vw, 50px);
}

.m64-contact-form-title {
    font-family: var(--m64-font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--m64-white);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(198,165,90,0.1);
}

.m64-contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.m64-contact-info-card {
    padding: 24px 0;
    border-bottom: 1px solid rgba(198,165,90,0.08);
}

.m64-contact-info-card:first-child {
    padding-top: 0;
}

.m64-contact-info-card h4 {
    font-family: var(--m64-font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-gold);
    margin-bottom: 8px;
}

.m64-contact-info-card p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--m64-white-90);
    line-height: 1.7;
    margin: 0;
}

.m64-contact-info-card a {
    color: var(--m64-white-90);
    text-decoration: none;
    transition: color 0.3s ease;
}

.m64-contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--m64-font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--m64-gold) !important;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.m64-contact-info-link:hover {
    gap: 10px;
}

.m64-contact-info-link svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m64-contact-info-card--hours p {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

/* Full width map */
.m64-contact-map-full {
    width: 100%;
    border-top: 1px solid rgba(198,165,90,0.08);
}

.m64-contact-map-full iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(0.3) contrast(1.1);
}

/* ══════════════════════════════════════
   TWO COLUMN LAYOUT (Corporate/Private)
   ══════════════════════════════════════ */
.m64-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.m64-split--reverse {
    direction: rtl;
}

.m64-split--reverse > * {
    direction: ltr;
}

.m64-split-image {
    position: relative;
    overflow: hidden;
}

.m64-split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.m64-split-image::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 1px solid rgba(198,165,90,0.2);
    z-index: -1;
}

/* ══════════════════════════════════════
   BOOKING CALENDAR
   ══════════════════════════════════════ */
.m64-booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.m64-calendar-wrap {
    background: var(--m64-black-card);
    border: 1px solid rgba(198,165,90,0.08);
    padding: 28px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.m64-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.m64-calendar-month {
    font-family: var(--m64-font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--m64-white);
    letter-spacing: 1px;
}

.m64-calendar-nav {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(198,165,90,0.15);
    color: var(--m64-white);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.m64-calendar-nav svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    fill: none !important;
    stroke: var(--m64-white) !important;
    stroke-width: 1.5 !important;
}

.m64-calendar-nav:hover {
    border-color: var(--m64-gold);
    background: rgba(198,165,90,0.08);
}

.m64-calendar-nav:hover svg {
    stroke: var(--m64-gold) !important;
}

.m64-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.m64-calendar-weekdays span {
    text-align: center;
    font-family: var(--m64-font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m64-gold);
    padding: 8px 0;
}

.m64-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.m64-calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--m64-font-body);
    font-size: 0.85rem;
    font-weight: 300;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    position: relative;
    gap: 2px;
}

.m64-calendar-day--empty {
    pointer-events: none;
}

.m64-day-num {
    position: relative;
    z-index: 1;
}

.m64-day-status {
    font-size: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

/* Available */
.m64-calendar-day--available {
    color: var(--m64-white-90);
    cursor: pointer;
}
.m64-calendar-day--available:hover {
    background: rgba(198,165,90,0.1);
    border-color: rgba(198,165,90,0.3);
    color: var(--m64-gold);
}

/* Selected */
.m64-calendar-day--selected,
.m64-calendar-day--selected:hover {
    background: var(--m64-gold) !important;
    color: var(--m64-black) !important;
    border-color: var(--m64-gold) !important;
}
.m64-calendar-day--selected .m64-day-status {
    color: var(--m64-black);
}

/* Past */
.m64-calendar-day--past {
    color: rgba(255,255,255,0.15);
    pointer-events: none;
}

/* Occupied (confirmed / event) */
.m64-calendar-day--occupied {
    background: rgba(220,53,69,0.12);
    color: #f5a0a8;
    pointer-events: none;
}
.m64-calendar-day--occupied .m64-day-status {
    color: #e57373;
}

/* Reserved (pending) */
.m64-calendar-day--reserved {
    background: rgba(255,193,7,0.1);
    color: #ffd54f;
    cursor: pointer;
}
.m64-calendar-day--reserved .m64-day-status {
    color: #ffc107;
}
.m64-calendar-day--reserved:hover {
    background: rgba(255,193,7,0.18);
}

/* Legend */
.m64-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(198,165,90,0.08);
}

.m64-calendar-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--m64-white-35);
    letter-spacing: 0.5px;
}

.m64-legend-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: block;
}

.m64-legend-available { background: var(--m64-white-90); }
.m64-legend-reserved { background: #ffc107; }
.m64-legend-confirmed { background: #e57373; }
.m64-legend-event { background: #e57373; }

/* Booking form wrap */
.m64-booking-form-wrap {
    background: var(--m64-black-card);
    border: 1px solid rgba(198,165,90,0.08);
    padding: clamp(28px, 4vw, 40px);
}

/* ══════════════════════════════════════
   SINGLE EVENT PAGE
   ══════════════════════════════════════ */
.m64-event-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 550px;
    margin-top: 58px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.m64-event-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--m64-black) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

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

.m64-event-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m64-event-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px 50px;
    max-width: 800px;
}

.m64-event-hero-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--m64-gold);
    color: var(--m64-black);
    padding: 12px 20px;
    margin-bottom: 24px;
    line-height: 1;
}

.m64-event-hero-date-day {
    font-family: var(--m64-font-display);
    font-size: 2.4rem;
    font-weight: 600;
}

.m64-event-hero-date-month {
    font-family: var(--m64-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 2px;
}

.m64-event-hero-date-year {
    font-family: var(--m64-font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 2px;
    opacity: 0.7;
}

.m64-event-hero-title {
    font-family: var(--m64-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--m64-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.m64-event-hero-location {
    font-family: var(--m64-font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-gold);
}

/* Event Layout: main + sidebar */
.m64-event-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.m64-event-main {}

.m64-event-section-title {
    font-family: var(--m64-font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--m64-white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(198,165,90,0.1);
}

.m64-event-description {
    margin-bottom: 40px;
}

.m64-event-description p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--m64-white-90);
    line-height: 1.9;
    margin-bottom: 16px;
}

.m64-event-featured-image {
    margin-top: 10px;
    overflow: hidden;
}

.m64-event-featured-image img {
    border: 1px solid rgba(198,165,90,0.08);
}

/* Sidebar */
.m64-event-sidebar {}

.m64-event-sidebar-card {
    background: var(--m64-black-card);
    border: 1px solid rgba(198,165,90,0.08);
    padding: 28px;
    margin-bottom: 20px;
}

.m64-event-sidebar-card h3 {
    font-family: var(--m64-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(198,165,90,0.1);
}

.m64-event-detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.m64-event-detail-row:last-child {
    margin-bottom: 0;
}

.m64-event-detail-label {
    font-family: var(--m64-font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m64-white-35);
}

.m64-event-detail-value {
    font-size: 1rem;
    font-weight: 300;
    color: var(--m64-white-90);
}

.m64-event-detail-value a {
    color: var(--m64-white-90) !important;
    text-decoration: none;
}

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.m64-marquee {
    background: var(--m64-black-soft);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(198,165,90,0.08);
    border-bottom: 1px solid rgba(198,165,90,0.08);
}

.m64-marquee-track {
    display: flex;
    width: max-content;
    animation: m64Marquee 30s linear infinite;
}

.m64-marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
    white-space: nowrap;
}

.m64-marquee-item span {
    font-family: var(--m64-font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--m64-white-35);
}

.m64-marquee-dot {
    width: 4px; height: 4px;
    background: var(--m64-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.m64-footer {
    background: var(--m64-black-soft);
    border-top: 1px solid rgba(198,165,90,0.06);
    padding: 60px clamp(24px, 8vw, 120px) 30px;
}

.m64-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.m64-footer-brand .m64-logo-text {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
}

.m64-footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--m64-white-90);
    line-height: 1.7;
    max-width: 300px;
}

.m64-footer h4 {
    font-family: var(--m64-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m64-gold);
    margin-bottom: 20px;
}

.m64-footer-links {
    list-style: none;
}

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

.m64-footer-links a {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--m64-white-90);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.m64-footer-bottom {
    border-top: 1px solid rgba(198,165,90,0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.m64-footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
}

.m64-footer-bottom a {
    color: rgba(198,165,90,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ══════════════════════════════════════
   STICKY MOBILE FOOTER
   ══════════════════════════════════════ */
.m64-sticky-footer {
    display: none;
}

/* ══════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════ */
.m64-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--m64-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

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

.m64-preloader-text {
    font-family: var(--m64-font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--m64-gold);
    opacity: 0;
    animation: m64PreloaderFade 2s ease forwards;
}

.m64-preloader-line {
    width: 60px;
    height: 1px;
    background: var(--m64-gold);
    margin-top: 20px;
    transform: scaleX(0);
    animation: m64PreloaderLine 2s ease forwards 0.3s;
}

@keyframes m64PreloaderFade {
    0% { opacity: 0; letter-spacing: 20px; }
    50% { opacity: 1; }
    100% { opacity: 1; letter-spacing: 12px; }
}

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

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
.m64-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.96);
    display: none;
    align-items: center;
    justify-content: center;
}

.m64-lightbox.active {
    display: flex;
}

.m64-lightbox-img {
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(198,165,90,0.15);
    transition: transform 0.3s ease;
}

.m64-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--m64-white);
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: serif;
}

.m64-lightbox-close:hover {
    border-color: var(--m64-gold);
    color: var(--m64-gold);
}

.m64-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--m64-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.m64-lightbox-arrow:hover {
    background: rgba(198,165,90,0.12);
    border-color: var(--m64-gold);
    color: var(--m64-gold);
}

.m64-lightbox-prev { left: 24px; }
.m64-lightbox-next { right: 24px; }

.m64-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--m64-font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes m64FadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.m64-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.25, 0, 0.25, 1);
}

.m64-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.m64-reveal-delay-1 { transition-delay: 0.1s; }
.m64-reveal-delay-2 { transition-delay: 0.2s; }
.m64-reveal-delay-3 { transition-delay: 0.3s; }
.m64-reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .m64-location-grid { grid-template-columns: 1fr; gap: 40px; }
    .m64-location-grid .m64-location-info { text-align: center; }
    .m64-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .m64-event-layout { grid-template-columns: 1fr; gap: 40px; }
    .m64-booking-layout { grid-template-columns: 1fr; gap: 40px; }
    .m64-split { grid-template-columns: 1fr; gap: 40px; }
    .m64-split--reverse { direction: ltr; }
    .m64-about-stats { gap: 30px; }
    .m64-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }
    .m64-gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .m64-gallery-item:nth-child(2) { grid-column: 1 / 2; }
    .m64-gallery-item:nth-child(3) { grid-column: 2 / 3; }
    .m64-gallery-item:nth-child(4) { grid-column: 1 / 2; }
    .m64-gallery-item:nth-child(5) { grid-column: 2 / 3; }
    .m64-footer-grid { grid-template-columns: 1fr 1fr; }
    .m64-gallery-full { grid-template-columns: repeat(2, 1fr); }
    .m64-gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
    body.m64-page { padding-bottom: 76px; }

    /* Nav */
    .m64-nav, .m64-header-ctas { display: none; }
    .m64-menu-toggle { display: flex; }
    .m64-mobile-menu { display: flex; }
    .m64-floating-booking { display: none; }

    /* Calendar mobile fix */
    .m64-calendar-wrap { padding: 16px; }
    .m64-calendar-day { font-size: 0.75rem; }
    .m64-day-status { font-size: 0.4rem; }
    .m64-calendar-weekdays span { font-size: 0.55rem; letter-spacing: 1px; }
    .m64-calendar-legend { gap: 10px; }
    .m64-calendar-legend span { font-size: 0.6rem; }
    .m64-booking-form-wrap { padding: 20px; }
    .m64-booking-layout { overflow: hidden; }

    /* Hero */
    .m64-hero-ctas { flex-direction: column; gap: 14px; }
    .m64-btn-primary, .m64-btn-secondary {
        width: 100%; max-width: 280px; justify-content: center;
    }
    .m64-hero-scroll { display: none; }
    .m64-hero-arrow { display: none; }
    .m64-hero-bullets { bottom: 30px; }

    /* Gallery mobile: first tall, rest 2 per row */
    .m64-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
        gap: 6px;
    }
    .m64-gallery-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        height: auto;
        min-height: 400px;
    }
    .m64-gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 3 / 4; }
    .m64-gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 3 / 4; }
    .m64-gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 4 / 5; }
    .m64-gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 4 / 5; }

    .m64-gallery-full { grid-template-columns: 1fr 1fr; }
    .m64-gallery-full .m64-gallery-item { height: 200px; }
    .m64-gallery-masonry { columns: 2; column-gap: 6px; }
    .m64-gallery-masonry-item { margin-bottom: 6px; }

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

    /* Sticky footer */
    .m64-sticky-footer {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 999;
        background: var(--m64-black);
        border-top: 1px solid rgba(198,165,90,0.15);
        padding: 10px 14px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .m64-sticky-footer a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--m64-font-body);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 13px 14px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .m64-sticky-footer a svg { width: 16px; height: 16px; flex-shrink: 0; }

    .m64-sticky-footer .m64-sticky-wa {
        background: linear-gradient(135deg, var(--m64-gold), var(--m64-gold-light));
        color: var(--m64-black);
    }
    .m64-sticky-footer .m64-sticky-wa svg { fill: var(--m64-black); }
    .m64-sticky-footer .m64-sticky-wa:active { transform: scale(0.97); }

    .m64-sticky-footer .m64-sticky-phone {
        border: 1px solid rgba(198,165,90,0.3);
        color: var(--m64-gold);
    }
    .m64-sticky-footer .m64-sticky-phone svg {
        fill: none; stroke: var(--m64-gold); stroke-width: 2;
        stroke-linecap: round; stroke-linejoin: round;
    }
    .m64-sticky-footer .m64-sticky-phone:active {
        background: rgba(198,165,90,0.08);
        transform: scale(0.97);
    }

    .m64-sticky-footer .m64-sticky-booking {
        border: 1px solid var(--m64-gold);
        color: var(--m64-gold) !important;
        background: rgba(198,165,90,0.08);
    }
    .m64-sticky-footer .m64-sticky-booking svg {
        width: 16px; height: 16px;
        fill: none; stroke: var(--m64-gold); stroke-width: 2;
    }
    .m64-sticky-footer .m64-sticky-booking:active {
        background: rgba(198,165,90,0.15);
        transform: scale(0.97);
    }

    .m64-footer { padding-bottom: 100px; }
}

@media (max-width: 480px) {
    .m64-gallery-grid { grid-auto-rows: 190px; gap: 4px; }
    .m64-gallery-item:nth-child(1) { min-height: 360px; }
    .m64-gallery-full .m64-gallery-item { height: 170px; }
    .m64-features { grid-template-columns: 1fr 1fr; }
    .m64-map-wrap iframe { height: 280px; }
    .m64-contact-map-full iframe { height: 300px; }
    .m64-events-grid { grid-template-columns: 1fr; }
}