:root {
    --bg: #0B0A0A;
    --surface: #1A1818;
    --border: rgba(224, 169, 109, 0.15);
    --text: #F8F5F2;
    --text-muted: #A39B98;
    --accent: #E0A96D; /* Champagne Gold */
    --accent-glow: rgba(224, 169, 109, 0.3);
}

* { margin:0; padding:0; box-sizing:border-box; }
/* Only hide cursor on desktop */
@media (pointer: fine) {
    body, a, button, input { cursor: none; }
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; scroll-behavior: smooth;}
h1, h2, h3, .logo, .day-name, .calendar-header { font-family: 'Playfair Display', serif; }

/* Custom Cursor */
.cursor-glow {
    position: fixed; width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), height 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s; backdrop-filter: invert(10%);
    display: none;
}
@media (pointer: fine) {
    .cursor-glow { display: block; }
}
body:hover .cursor-glow { opacity: 1; }
.cursor-glow.hovering { width: 70px; height: 70px; background: var(--accent-glow); backdrop-filter: blur(2px); border-color: transparent;}

/* Globals */
.section { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.mt-4 { margin-top: 28px; }
.w-100 { width: 100%; }

.btn-primary { 
    display: inline-block; padding: 16px 32px; background: rgba(224, 169, 109, 0.15); color: var(--accent);
    border: 1px solid var(--accent); text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.85rem; transition: 0.4s; position: relative; overflow: hidden; z-index: 1; text-align: center; font-weight: 700; cursor: pointer;
}
.btn-primary::after {
    content:''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0%; background: var(--accent);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1); z-index: -1;
}
.btn-primary:hover { color: var(--bg); }
.btn-primary:hover::after { height: 100%; }

/* Mobile optimization for Reserve Nav Button */
.nav-btn { background: var(--accent) !important; color: var(--bg) !important; font-weight: 800; border: none; padding: 12px 24px; box-shadow: 0 4px 20px var(--accent-glow); z-index:100; position:relative;}

/* Hero */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: -10%; left: -10%; width: 120%; height: 120%; background-size: cover; background-position: center; z-index: -2; transition: transform 0.1s linear; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(11,10,10,0.3) 0%, rgba(11,10,10,0.95) 100%); z-index: -1; }

.nav { position: absolute; top: 0; left: 0; width: 100%; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 10; }
.nav::after { content:''; position:absolute; top:0;left:0;width:100%;height:100%;background:linear-gradient(rgba(0,0,0,0.8),transparent);z-index:-1;}
.logo { font-size: 2.2rem; font-weight: 700; color: var(--text); letter-spacing: -1px; z-index:1;}
.nav-right { display: flex; align-items: center; gap: 20px; z-index:1;}

.hero-content { text-align: center; position: relative; z-index: 1; padding: 0 20px; width: 100%; }
.hero-content h1 { font-size: clamp(3.2rem, 10vw, 7.5rem); font-weight: 400; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.hero-content i { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-content p { font-size: clamp(1rem, 4vw, 1.25rem); color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 300; }

.scroll-ind { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); opacity: 0.7; animation: bounce 2s infinite; z-index:2;}
@keyframes bounce { 0%,100% {transform: translate(-50%, 0);} 50% {transform: translate(-50%, 15px);} }

/* Fullscreen Menu Styles */
.menu-btn { background: transparent; border: none; display: flex; flex-direction: column; gap: 6px; z-index: 100; position: relative; padding: 10px; cursor: pointer; }
.menu-btn .line { width: 30px; height: 2px; background: white; transition: 0.3s; display: block; pointer-events: none;}
.menu-btn:hover .line:first-child { width: 40px; transform: translateX(-5px); }

.fullscreen-menu {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--bg); z-index: 90; display: flex;
    opacity: 0; pointer-events: none; transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.fullscreen-menu.active { opacity: 1; pointer-events: all; }
.menu-bg-img {
    flex: 1; background: linear-gradient(135deg, #1A1818, #E0A96D25, #0B0A0A);
    position: relative; opacity: 0; transform: scale(1.05); transition: 1s 0.2s;
}
.fullscreen-menu.active .menu-bg-img { opacity: 0.4; transform: scale(1); filter: grayscale(50%);}
.menu-content { flex: 1; padding: 40px 60px; display: flex; flex-direction: column; justify-content: space-between; background: var(--bg); overflow-y: auto;}
.menu-header { text-align: right; }
.close-btn { background: transparent; border: none; color: white; font-size: 2.5rem; transition: 0.3s; padding: 10px; cursor:pointer;}
.close-btn:hover { color: var(--accent); transform: scale(1.2) rotate(90deg); }

.menu-links { list-style: none; margin-top: 20px;}
.menu-links li { overflow: hidden; margin-bottom: 5px; }
.menu-link {
    font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 4.5rem); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.5); text-decoration: none; position: relative;
    display: inline-block; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) ease, color 0.3s, -webkit-text-stroke 0.3s;
}
.fullscreen-menu.active .menu-link { transform: translateY(0); }
.fullscreen-menu.active li:nth-child(1) .menu-link { transition-delay: 0.1s; }
.fullscreen-menu.active li:nth-child(2) .menu-link { transition-delay: 0.15s; }
.fullscreen-menu.active li:nth-child(3) .menu-link { transition-delay: 0.2s; }
.fullscreen-menu.active li:nth-child(4) .menu-link { transition-delay: 0.25s; }
.fullscreen-menu.active li:nth-child(5) .menu-link { transition-delay: 0.3s; }
.menu-link:hover { color: var(--accent); -webkit-text-stroke: 0px; }

.menu-info { display: flex; flex-direction: column; gap: 10px; color: var(--text-muted); font-size: 0.95rem; opacity: 0; transition: 1s 0.5s; letter-spacing: 1px; margin-top:30px;}
.fullscreen-menu.active .menu-info { opacity: 1; }
.social-links { display: flex; gap: 20px; font-weight: bold; margin-top: 10px; }
.social-links a { color: var(--text); text-decoration: none; transition: 0.2s; }
.social-links a:hover { color: var(--accent); }

/* Services Grid */
.section-title { font-size: clamp(2.5rem, 6vw, 3.5rem); text-align: center; margin-bottom: 50px; font-weight: 400; color: var(--accent); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.s-card { position: relative; height: 450px; overflow: hidden; border-radius: 8px; }
.s-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
.s-card:hover .s-img { transform: scale(1.08); filter: brightness(0.6); }
.s-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); transition: 0.4s; display: flex; flex-direction: column; justify-content: flex-end; }
.s-info h3 { font-size: 1.8rem; margin-bottom: 5px; font-weight: 400; }
.s-info .price { color: var(--accent); font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; opacity: 1; }
/* Forced price opacity for mobile, enhanced padding on desktop hover */
.s-card:hover .s-info { padding-bottom: 40px; }

/* The Studio / Masonry */
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap:20px;}
.w-50 { width: 50%; color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }
.text-right { text-align: right; }
.masonry-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 350px 350px; gap: 20px; }
.m-item { background-size: cover; background-position: center; border-radius: 8px; transition: filter 0.8s, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); filter: grayscale(10%); } /* Reduced default grayscale for mobile users */
.m-item:hover { filter: grayscale(0%); transform: scale(1.03); z-index: 2;}
.m-tall { grid-row: span 2; }
.m-short { grid-row: span 1; }

/* Booking Section */
.booking-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.booking-text h2 { font-size: clamp(3rem, 8vw, 4rem); line-height: 1.1; margin-bottom: 20px; font-weight: 400; letter-spacing: -1px;}
.booking-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 0; margin-top: 40px;}
.marquee { display: flex; width: max-content; animation: scroll-left 20s linear infinite; }
.marquee span { padding: 0 40px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); font-weight: 500;}
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Secure Booking Calendar UI */
.booking-ui { background: var(--surface); padding: 30px; border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.5); position: relative; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; font-size: 1.5rem; color: var(--accent); margin-bottom: 30px; font-weight: 600; }
.cal-nav { font-family: sans-serif; letter-spacing: 15px; opacity: 0.5; transition: 0.3s; cursor:pointer; }
.cal-nav:hover { opacity: 1; color: var(--text); }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
.day-name { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px;}
.day { padding: 14px 0; font-size: 1.05rem; border-radius: 50%; transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1); position: relative; border: 1px solid transparent; cursor: pointer; display:flex; align-items:center; justify-content:center;}
.day.past { opacity: 0.2; pointer-events:none;}
@media (pointer: fine) {
    .day:not(.past):hover { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
}
.day.available { color: var(--bg); font-weight: bold; background: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }
.day.available::after { content:''; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--bg); }
.day.available:hover { transform: scale(1.1); box-shadow: 0 8px 20px var(--accent-glow); background: #fff; border-color: #fff;}

/* Slide out timeslots */
.time-slots { margin-top: 30px; border-top: 1px solid var(--border); padding-top: 30px; display: none; animation: slideDown 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.time-slots h4 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.3rem; margin-bottom: 20px; color: var(--text); }
.time-slots h4 span { color: var(--accent); font-style: italic; font-weight: 400;}
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.t-btn { background: transparent; border: 1px solid var(--border); color: var(--text); padding: 14px; font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: 0.3s; border-radius: 8px; cursor: pointer;}
.t-btn:hover, .t-btn.selected { background: var(--border); color: var(--accent); border-color: var(--accent); }

/* Premium Footer */
.premium-footer { background: #080707; padding-top: 80px; padding-bottom: 40px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.f-links h4, .f-newsletter h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--accent); margin-bottom: 20px; font-weight: 400;}
.f-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; color: var(--text-muted); font-size: 0.95rem; }
.f-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.f-links a:hover { color: var(--accent); letter-spacing: 1px; }

.input-group { display: flex; border-bottom: 1px solid var(--border); padding-bottom: 10px; transition: 0.3s; }
.input-group:hover { border-color: var(--accent); }
.input-group input { background: transparent; border: none; color: white; width: 100%; outline: none; font-family: inherit; font-size: 0.95rem;}
.input-group button { background: transparent; border: none; color: var(--accent); font-size: 1.5rem; transition: 0.3s; cursor:pointer;}
.input-group button:hover { transform: translateX(5px); }

.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--accent); text-decoration: none; font-weight: bold;}

/* Entrances */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Contact Section */
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.c-details { margin-top: 40px; border-top: 1px solid var(--border); padding-top: 40px; }
.c-item p { font-size: 1.1rem; font-weight: 500; color: var(--text); }
.contact-form-wrap { background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 50px; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); backdrop-filter: blur(10px); }
.luxury-form input, .luxury-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--text); font-family: inherit; font-size: 1rem; padding: 15px 0; outline: none; transition: 0.3s; border-radius: 0; display:block;}
.luxury-form input:focus, .luxury-form textarea:focus { border-bottom-color: var(--accent); }
.luxury-form input::placeholder, .luxury-form textarea::placeholder { color: rgba(255,255,255,0.4); font-weight: 300; }

/* Dedicated Mobile Optimization ensuring 10x ROI layout on tiny screens */
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 30px 20px; }
    .luxury-form .form-row { grid-template-columns: 1fr !important; }
    .section { padding: 60px 5%; }
    .hero { align-items: flex-start; padding-top: 120px; }
    .nav { padding: 15px 5%; }
    .nav-right { gap: 15px;}
    .btn-primary.nav-btn { padding: 10px 20px; font-size: 0.8rem;}
    .booking-container { grid-template-columns: 1fr; gap: 30px; }
    .booking-ui { padding: 25px 15px; }
    .calendar-header { font-size: 1.25rem;}
    .day { padding: 10px 0; font-size: 0.95rem; width: 40px; height: 40px; margin: 0 auto;}
    .t-btn { padding: 12px; font-size: 0.85rem;}
    .flex-between { flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 30px; }
    .w-50 { width: 100%; text-align: left; }
    .masonry-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 15px; }
    .m-item { height: 250px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
    .f-brand { grid-column: span 1; }
    .menu-bg-img { display: none; }
    .menu-content { padding: 30px 20px; }
    .menu-header { text-align: left; }
    .close-btn { position:absolute; right: 20px; top: 20px;}
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Calendar nav buttons */
.cal-nav span { cursor: pointer; transition: 0.3s; }
.cal-nav span:hover { color: var(--accent); opacity: 1; }
