/* --- RESET & VARIABLES --- */
:root { --bg-color: #0b0b0b; --text-color: #e0e0e0; --gold: #C5A059; --gold-dim: #8a703d; --white: #ffffff; --border: rgba(255, 255, 255, 0.1); --font-head: 'Cinzel', serif; --font-body: 'Manrope', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-body); overflow-x: hidden; line-height: 1.6; }
body.loading { overflow: hidden; height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; width: 100%; height: auto; }
picture { display: block; }
ul { list-style: none; }

/* UTILITIES */
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.section-tag { font-size: 0.85rem; letter-spacing: 2px; color: var(--gold); display: block; margin-bottom: 1rem; font-weight: 600; }
.gold-text { color: var(--gold); }
.header-desc { max-width: 500px; color: #888; margin-bottom: 3rem; }
.text-center { text-align: center; }

/* CUSTOM CURSOR */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    .cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 20000; pointer-events: none; will-change: transform; }
    .cursor-dot { width: 8px; height: 8px; background: var(--gold); top:0; left:0; }
    .cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(197, 160, 89, 0.5); top:0; left:0; transition: transform 0.5s linear, width 0.2s, height 0.2s, background 0.2s; }
    body.hovering .cursor-outline { width: 60px; height: 60px; background: rgba(197, 160, 89, 0.1); border-color: var(--gold); }
}
@media (hover: none) { .cursor-dot, .cursor-outline { display: none !important; } }

/* PRELOADER */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-color); z-index: 10000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: transform 0.8s ease-in-out; }
.preloader-logo { width: 150px; height: auto; margin-bottom: 30px; animation: pulseLogo 2s infinite ease-in-out; }
@keyframes pulseLogo { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
.loading-bar { width: 150px; height: 2px; background: #333; overflow: hidden; }
.bar-fill { width: 0%; height: 100%; background: var(--gold); animation: loadBar 1.5s ease-in-out forwards; }
.preloader.hide { transform: translateY(-100%); }
@keyframes loadBar { 0% { width: 0; } 100% { width: 100%; } }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 900; background: rgba(11, 11, 11, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 50px; width: auto; transition: transform 0.3s ease; }
.logo-wrapper:hover .nav-logo { transform: scale(1.05); }
.menu-items { display: flex; gap: 30px; align-items: center; }
.menu-items a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.menu-items a:hover { color: var(--gold); }
.btn-book { border: 1px solid var(--white); padding: 8px 20px; border-radius: 50px; }
.btn-book:hover { background: var(--white); color: var(--bg-color); }
.mobile-trigger { display: none; cursor: pointer; flex-direction: column; gap: 6px; width: 30px; }
.burger-bar { height: 2px; width: 100%; background: var(--white); transition: 0.3s; }
.mobile-nav-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--bg-color); z-index: 800; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s ease-in-out; }
.mobile-nav-overlay.active { right: 0; }
.mobile-links { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.m-link { font-family: var(--font-head); font-size: 2rem; color: #555; transition: 0.3s; }
.m-link.highlight { color: var(--gold); }
.m-link:hover, .mobile-nav-overlay.active .m-link { color: var(--white); }

/* SECTIONS */
.hero-section { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; position: relative; }
.hero-container { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 40px; }
.hero-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 3rem); line-height: 1; text-transform: none; transform: translateY(100%); transition: transform 1s ease-out; }
.hero-title.active { transform: translateY(0); }
.hero-title-big-text { font-size: clamp(2rem, 4vw, 4rem);}

/* BRAND HEADER STYLES */
.brand-line-1 {
    text-transform: none; 
    font-size: clamp(3.2rem, 7.5vw, 7.5rem); 
    line-height: 0.9;
    letter-spacing: -0.02em;
}
.brand-line-2 {
    text-transform: uppercase;
    font-size: clamp(2.2rem, 5.2vw, 5.2rem); 
    line-height: 1.1;
    margin-top: 10px;
}
.brand-i {
    text-transform: lowercase; 
}

.overflow-mask { overflow: hidden; }
.indented { margin-left: 60px; }
.hero-sub-wrapper { margin-top: 40px; max-width: 450px; }
.hero-sub { color: #aaa; margin-bottom: 30px; }
.magnetic-btn { display: inline-block; padding: 12px 30px; border: 1px solid var(--border); border-radius: 50px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.magnetic-btn:hover { border-color: var(--gold); color: var(--gold); }
.hero-visual { height: 60vh; border-radius: 8px; overflow: hidden; }
.image-reveal img { width: 100%; height: 100%; object-fit: cover; }
.marquee-strip { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; font-family: var(--font-head); color: #444; font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; animation: marquee 20s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICES GRID */
.services-section { padding: 80px 0; }
.services-grid-new { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.service-card-new { background: #151515; padding: 30px; border: 1px solid var(--border); border-radius: 4px; transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); display: flex; flex-direction: column; align-items: flex-start; position: relative; overflow: hidden; }
.service-card-new:hover { transform: translateY(-10px) scale(1.02); border-color: var(--gold); box-shadow: 0 10px 40px rgba(197, 160, 89, 0.15); }
.service-card-new::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent); transform: skewX(-25deg); transition: 0.5s; }
.service-card-new:hover::after { left: 150%; transition: 0.7s; }
.service-icon { font-size: 2rem; color: var(--gold); margin-bottom: 20px; transition: transform 0.4s ease; }
.service-card-new:hover .service-icon { transform: scale(1.1); }
.service-card-new h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 15px; color: var(--white); }
.service-card-new p { color: #aaa; font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }
.btn-details { background: none; border: none; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-details:hover { gap: 15px; color: var(--white); }

/* TEAM */
.team-section { background: #0f0f0f; padding: 100px 0; }
.section-header h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 1rem; }
.team-grid-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.team-card { background: #151515; border: 1px solid var(--border); padding: 20px; border-radius: 4px; transition: all 0.4s ease; cursor: pointer; }
.team-card:hover { transform: translateY(-10px); border-color: var(--gold-dim); box-shadow: 0 5px 20px rgba(197, 160, 89, 0.1); }
.member-img { height: 300px; width: 100%; margin-bottom: 20px; overflow: hidden; border-radius: 2px; }
.member-img picture { width: 100%; height: 100%; }
.member-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s ease; }
.team-card:hover .member-img img { filter: grayscale(0%); transform: scale(1.05); }
.member-info h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 5px; }
.role { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 10px; }
.btn-read-more { background: transparent; border: 1px solid var(--border); color: var(--gold); padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; text-transform: uppercase; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.team-card:hover .btn-read-more { background: var(--gold); color: #000; }

/* SOCIAL */
.social-section { padding: 80px 0; background: #0d0d0d; border-top: 1px solid var(--border); }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.social-card { display: flex; align-items: center; gap: 25px; padding: 30px; background: #151515; border: 1px solid var(--border); border-radius: 4px; transition: 0.4s ease; position: relative; overflow: hidden; }
.social-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.social-icon { width: 60px; height: 60px; border-radius: 50%; background: #222; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; transition: 0.4s ease; }
.social-card.tiktok:hover .social-icon { background: #000; color: #ff0050; text-shadow: 2px 2px 0px #00f2ea; }
.social-card.instagram:hover .social-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-card.facebook:hover .social-icon { background: #1877F2; }
.social-text h3 { font-family: var(--font-head); margin-bottom: 5px; font-size: 1.2rem; }
.social-text p { color: #888; font-size: 0.9rem; margin-bottom: 10px; }
.social-cta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: 0.3s; }
.social-card:hover .social-cta { gap: 10px; color: #fff; }

/* CALENDAR WIDGET */
.cta-section { padding: 120px 0; background: #0f0f0f; border-top: 1px solid var(--border); }
.big-cta { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 6rem); text-align: center; margin-bottom: 20px; line-height: 1; }
.cta-sub { color: #888; font-size: 1.1rem; margin-bottom: 50px; }
.square-booking-shell { max-width: 980px; margin: 0 auto; padding: 14px; border-radius: 12px; border: 1px solid rgba(197, 160, 89, 0.25); background: radial-gradient(circle at 85% 0%, rgba(197, 160, 89, 0.16), transparent 45%), linear-gradient(160deg, #171717 0%, #0f0f0f 70%); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55); }
.square-booking-embed { position: relative; height: clamp(620px, 82vh, 1080px); min-height: 520px; max-height: calc(100vh - 130px); border-radius: 10px; overflow: auto; -webkit-overflow-scrolling: touch; border: 1px solid rgba(255, 255, 255, 0.08); background: #101010; scrollbar-width: thin; scrollbar-color: rgba(197, 160, 89, 0.5) rgba(255, 255, 255, 0.08); }
.square-booking-embed::-webkit-scrollbar { width: 8px; }
.square-booking-embed::-webkit-scrollbar-thumb { background: rgba(197, 160, 89, 0.5); border-radius: 8px; }
.square-booking-embed iframe { display: block; width: 100% !important; height: 100% !important; min-height: 520px; border: 0; border-radius: 9px; background: #ffffff; color-scheme: light; }
.booking-wrapper { background: #151515; border: 1px solid var(--border); padding: 0; border-radius: 8px; max-width: 900px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.6); overflow: hidden; }
.calendar-container { display: flex; min-height: 500px; }
.calendar-main { width: 65%; padding: 40px; border-right: 1px solid var(--border); }
.time-slot-sidebar { width: 35%; padding: 40px; background: #111; display: flex; flex-direction: column; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.current-month { font-family: var(--font-head); color: var(--gold); font-size: 1.5rem; }
.calendar-nav i { color: #888; font-size: 1.2rem; margin-left: 20px; cursor: pointer; transition: 0.3s; }
.calendar-nav i:hover { color: var(--white); }
.calendar-body { width: 100%; }
.day-names { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 15px; }
.day-names span { text-align: center; color: #555; font-size: 0.8rem; text-transform: uppercase; font-weight: 600; }
.days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.calendar-day { height: 50px; display: flex; align-items: center; justify-content: center; color: #ccc; cursor: pointer; border-radius: 50%; transition: 0.3s; font-size: 0.95rem; }
.calendar-day:hover { background: rgba(197, 160, 89, 0.2); color: var(--gold); }
.calendar-day.active { background: var(--gold); color: #000; font-weight: bold; }
.calendar-day.empty { cursor: default; pointer-events: none; }
.time-slot-sidebar h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 20px; }
.time-slots { display: flex; flex-direction: column; gap: 10px; overflow-y: auto; max-height: 300px; margin-bottom: 20px; padding-right: 5px; }
.time-slots::-webkit-scrollbar { width: 5px; }
.time-slots::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
.time-btn { background: transparent; border: 1px solid #333; color: #aaa; padding: 10px; border-radius: 4px; cursor: pointer; transition: 0.3s; text-align: center; font-size: 0.9rem; }
.time-btn:hover, .time-btn.selected { border-color: var(--gold); color: var(--gold); background: rgba(197, 160, 89, 0.05); }
.confirm-booking { width: 100%; margin-top: auto; padding: 15px; }

/* REVIEWS SECTION */
.reviews-section { padding: 80px 0; background: #0d0d0d; border-top: 1px solid var(--border); }
.reviews-header { margin-bottom: 40px; text-align: center; }
.reviews-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin-bottom: 10px; }

/* FOOTER */
.footer-section { padding: 60px 0 30px; background: #0b0b0b; border-top: 1px solid var(--border); }
.footer-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.col h4 { color: var(--gold); margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.col a, .col p { display: block; color: #888; margin-bottom: 10px; font-size: 0.95rem; }
.copyright { text-align: center; color: #444; font-size: 0.8rem; border-top: 1px solid #1a1a1a; padding-top: 20px; }

/* MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 10005; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-content { background: #111; border: 1px solid var(--gold); width: fit-content; min-width: 50%; max-width: 95%; max-height: 85vh; overflow-y: auto; padding: 40px; position: relative; border-radius: 4px; opacity: 0; transform: scale(0.95) translateY(10px); }
@media (min-width: 1200px) { .modal-content { max-width: 1200px; } }
.modal-overlay.open .modal-content { animation: modalIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.modal-overlay.closing .modal-content { animation: modalOut 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
@keyframes modalIn { 0% { opacity: 0; transform: scale(0.95) translateY(20px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes modalOut { 0% { opacity: 1; transform: scale(1) translateY(0); } 100% { opacity: 0; transform: scale(0.95) translateY(-20px); } }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; transition: 0.3s; z-index: 10; }
.close-modal:hover { color: var(--gold); transform: rotate(90deg); }
.modal-title { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 20px; color: var(--gold); border-bottom: 1px solid #333; padding-bottom: 15px; }
.modal-subtitle { color: var(--white); font-weight: 600; margin-top: 20px; margin-bottom: 10px; display: block; font-size: 1.1rem; }
.modal-text { color: #ccc; margin-bottom: 10px; font-size: 0.95rem; }
.modal-text ul { list-style: disc; padding-left: 20px; color: #999; }

/* TEAM MODAL IMAGE FIT */
.team-modal-content {
    width: 90%;
    max-width: 1200px;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}
.team-modal-grid { display: flex; flex: 1; min-height: 450px; }

.team-modal-img { 
    width: 40%; 
    background: var(--bg-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-modal-img picture {
    width: 100%;
    height: 100%;
}

.team-modal-img img { 
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-color);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.team-modal-info { width: 60%; padding: 40px; overflow-y: auto; max-height: 70vh; }
.team-modal-info h2 { font-family: var(--font-head); color: var(--gold); font-size: 2rem; margin-bottom: 5px; }
.team-role { color: #888; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.team-desc p { color: #ccc; margin-bottom: 15px; font-size: 1rem; line-height: 1.7; }

/* GALLERY & ANIMATIONS */
.gallery-section { padding: 100px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 20px; }
.g-item { position: relative; overflow: hidden; border-radius: 4px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.7); }
.g-item:hover img { transform: scale(1.1); filter: brightness(1); }
.g-large { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-column: span 1; grid-row: span 2; }
.g-wide { grid-column: span 2; grid-row: span 1; }
.g-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); transform: translateY(100%); transition: 0.3s; }
.g-item:hover .g-overlay { transform: translateY(0); }
.g-overlay span { font-family: var(--font-head); color: var(--gold); letter-spacing: 1px; }
.animate-text, .animate-fade { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* MOBILE */
@media (max-width: 900px) {
    .menu-items { display: none; }
    .mobile-trigger { display: flex; }
    .hero-container, .intro-grid { grid-template-columns: 1fr; }
    .hero-section { text-align: center; justify-content: center; padding-top: 100px; }
    .hero-container { gap: 40px; }
    .gallery-grid { display: flex; flex-direction: column; height: auto; }
    .g-item { height: 300px; }
    .team-grid-wrapper { grid-template-columns: 1fr; }
    
    /* Team Modal Mobile Stack */
    .team-modal-grid { flex-direction: column; min-height: auto; }
    .team-modal-img { width: 100%; height: 320px; padding: 15px; }
    .team-modal-img img { width: 100%; height: 100%; }
    .team-modal-info { width: 100%; padding: 25px; max-height: none; overflow: visible; }
    
    /* Calendar Mobile */
    .square-booking-shell { padding: 10px; }
    .square-booking-embed { min-height: 500px; height: min(880px, calc(100vh - 110px)); max-height: calc(100vh - 70px); }
    .square-booking-embed iframe { min-height: 500px; }
    .calendar-container { flex-direction: column; }
    .calendar-main { width: 100%; border-right: none; border-bottom: 1px solid #333; padding: 20px; }
    .time-slot-sidebar { width: 100%; padding: 20px; }
    
    .modal-content { width: 95%; padding: 25px; }
}
