:root {
    --black: #0a0a0a; --white: #ffffff; --gold: #c9a96e; --gold-light: #d4b87a;
    --grey-100: #f5f5f3; --grey-200: #e8e6e3; --grey-300: #d0cdc8;
    --text-light: #eee; --text-dark: #1a1a1a; --text-muted-l: #888; --text-muted-d: #666;
    --border-l: rgba(255,255,255,0.07); --border-d: rgba(0,0,0,0.08);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; cursor: none; }
body { font-family: var(--sans); background: var(--black); color: var(--text-light); line-height: 1.6; overflow-x: hidden; cursor: none; -webkit-font-smoothing: antialiased; }
::selection { background: var(--gold); color: var(--black); }
img { max-width: 100%; display: block; }

/* CURSOR */
.cursor-dot { position: fixed; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 10000; transition: transform 0.1s; mix-blend-mode: difference; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.5); border-radius: 50%; pointer-events: none; z-index: 9999; transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s; }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold); }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.text-center { text-align: center; }
.bg-black { background: var(--black); color: var(--text-light); }
.bg-white { background: var(--white); color: var(--text-dark); }
.bg-grey-gradient { background: linear-gradient(180deg, var(--grey-100) 0%, var(--grey-200) 100%); color: var(--text-dark); }

/* TYPOGRAPHY */
.section-eyebrow { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 400; }
.section-eyebrow.gold { color: var(--gold); }
.section-eyebrow.dark { color: var(--text-muted-d); }
.display-heading { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
.display-heading.dark { color: var(--text-dark); }
.body-text { font-size: 1rem; line-height: 1.9; color: var(--text-muted-l); max-width: 550px; }
.accent-line { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0 2rem; }
.accent-line.center { margin-left: auto; margin-right: auto; }
.accent-line.dark { background: var(--text-dark); opacity: 0.2; }

/* CINEMATIC INTRO */
.intro-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 1.2s ease; }
.intro-overlay.fade-out { opacity: 0; pointer-events: none; }
.intro-inner { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.intro-logo { height: 180px; opacity: 0; animation: introLogo 1.5s 0.8s var(--ease) forwards; }
.intro-line { width: 0; height: 1px; background: var(--gold); margin: 2rem auto; animation: introLine 1s 2.5s var(--ease) forwards; }
.intro-tagline { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 4px; color: rgba(255,255,255,0); animation: introTag 1s 3.2s ease forwards; }
@keyframes introLogo { to { opacity: 1; } }
@keyframes introLine { to { width: 80px; } }
@keyframes introTag { to { color: rgba(255,255,255,0.5); } }

/* BUTTONS */
.cta-btn { font-family: var(--sans); background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--text-light); padding: 1rem 2.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; cursor: none; position: relative; overflow: hidden; transition: color 0.4s var(--ease), border-color 0.4s; z-index: 1; }
.cta-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold); transition: left 0.5s var(--ease); z-index: -1; }
.cta-btn:hover { color: var(--black); border-color: var(--gold); }
.cta-btn:hover::before { left: 0; }
.cta-btn.hero-cta { border-color: rgba(255,255,255,0.4); }
.cta-btn.gold-btn { border-color: var(--gold); color: var(--gold); padding: 0.7rem 1.8rem; font-size: 0.7rem; }
.cta-btn.gold-btn:hover { color: var(--black); }
.cta-btn.dark-btn { border-color: var(--text-dark); color: var(--text-dark); }
.cta-btn.dark-btn::before { background: var(--text-dark); }
.cta-btn.dark-btn:hover { color: var(--white); }
.cta-btn.small { padding: 0.6rem 1.5rem; font-size: 0.7rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.8rem 3rem; z-index: 100; transition: all 0.5s var(--ease); color: white; }
.navbar.scrolled { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 1rem 3rem; }
.nav-logo { height: 80px; transition: all 0.4s ease; }
.navbar.scrolled .nav-logo { height: 55px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { color: inherit; text-decoration: none; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 400; position: relative; cursor: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; transition: opacity 1.2s ease; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%); }
.hero-content { position: relative; z-index: 10; color: #fff; max-width: 900px; padding: 0 2rem; transition: opacity 1s ease, transform 1s var(--ease); }
.hero-eyebrow { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 8px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero-logo-wrap { margin: 1.2rem auto 1.8rem; display: flex; justify-content: center; align-items: center; }
.hero-logo { height: 150px; max-width: 100%; opacity: 0; transform: scale(0.95) translateY(15px); animation: heroLogoReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) 4.8s forwards; }
@keyframes heroLogoReveal { to { opacity: 1; transform: scale(1) translateY(0); } }
.hero-divider { margin: 1.2rem auto; width: 60px; height: 1px; overflow: hidden; }
.hero-divider span { display: block; width: 100%; height: 100%; background: var(--gold); transform: translateX(-100%); animation: lineSlide 0.8s 5.6s var(--ease) forwards; }
@keyframes lineSlide { to { transform: translateX(0); } }
.hero-subtitle { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300; font-style: italic; letter-spacing: 3px; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.8rem; transition: opacity 0.5s; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ABOUT REDESIGN */
.section-about { padding: 9rem 0; overflow: hidden; }
.about-header { display: flex; flex-direction: column; align-items: center; }
.about-lead-serif { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-style: italic; color: var(--gold-light); letter-spacing: 1px; line-height: 1.4; margin-bottom: 0.5rem; text-align: center; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: flex-start; }
.about-image-column { position: sticky; top: 120px; }
.about-image-frame { position: relative; padding: 15px; }
.about-image-frame .parallax-wrap { border-radius: 4px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255, 255, 255, 0.05); z-index: 2; position: relative; }
.about-image-frame .parallax-img { width: 100%; height: 580px; object-fit: cover; transition: transform 0.4s ease; }
.about-image-frame:hover .parallax-img { transform: scale(1.02); }

.frame-border-accent { position: absolute; top: 0; left: 0; width: calc(100% - 30px); height: calc(100% - 30px); border: 1px solid var(--gold); border-radius: 4px; pointer-events: none; z-index: 1; transform: translate(30px, 30px); transition: transform 0.4s var(--ease); opacity: 0.65; }
.about-image-frame:hover .frame-border-accent { transform: translate(20px, 20px); opacity: 0.9; }
.image-caption { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 2rem; text-align: center; opacity: 0.7; }

.about-text-column { display: flex; flex-direction: column; gap: 3.5rem; position: relative; }
.narrative-block { position: relative; border-left: 1px solid rgba(201, 169, 110, 0.15); padding-left: 2.2rem; transition: border-color 0.4s ease; }
.narrative-block:hover { border-left-color: var(--gold); }
.narrative-meta { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 1rem; }
.narrative-year { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: 0.5px; }
.narrative-subtitle { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-light); opacity: 0.75; }

.narrative-paragraph { font-family: var(--sans); font-size: 0.95rem; line-height: 1.95; color: var(--grey-300); margin-bottom: 1.2rem; opacity: 0.9; font-weight: 300; }
.narrative-paragraph.font-italic { font-style: italic; color: var(--text-light); opacity: 0.8; }
.narrative-paragraph br { margin-bottom: 0.4rem; display: block; content: ""; }

.highlight-box { background: linear-gradient(90deg, rgba(201, 169, 110, 0.04) 0%, rgba(201, 169, 110, 0.01) 100%); border-left: 2px solid var(--gold); padding: 1.4rem 1.8rem; border-radius: 0 8px 8px 0; color: var(--white); font-style: italic; line-height: 1.9; }
.highlight-box strong { color: var(--gold-light); font-weight: 600; letter-spacing: 0.5px; }

.narrative-closing { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--gold-light); margin-top: 1.5rem; line-height: 1.4; }


/* SERVICES PREVIEW */
.section-services-preview { padding: 8rem 0; }
.services-grid { display: flex; gap: 4px; width: 100%; height: 550px; margin: 3rem 0 2rem; cursor: none; border-radius: 2px; overflow: hidden; }
.service-card { position: relative; flex: 1; background-size: cover; background-position: center; transition: flex 0.7s var(--ease); overflow: hidden; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2.5rem; }
.service-card:hover { flex: 2.5; }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); transition: background 0.6s ease; }
.service-card:hover .card-overlay { background: rgba(0,0,0,0.15); }
.card-content { position: relative; z-index: 10; text-align: center; color: #fff; transform: translateY(10px); opacity: 0.7; transition: all 0.5s var(--ease); }
.service-card:hover .card-content { transform: translateY(0); opacity: 1; }
.card-content img { width: 32px; height: 32px; margin-bottom: 12px; filter: brightness(0) invert(1); transition: transform 0.4s ease; }
.service-card:hover .card-content img { transform: scale(1.1); }
.card-content h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; letter-spacing: 3px; }

/* DYNAMIC SERVICES */
.hidden { display: none !important; }
.section-services-detail { padding: 5rem 0 8rem; }
.back-btn-container { margin-bottom: 2rem; }
.main-tabs { display: flex; justify-content: center; gap: 4rem; margin-bottom: 3rem; border-bottom: 1px solid var(--border-d); }
.main-tab { background: none; border: none; font-family: var(--serif); font-size: 1.6rem; padding-bottom: 1rem; cursor: none; color: var(--text-muted-d); font-weight: 400; transition: color 0.3s; position: relative; }
.main-tab.active { color: var(--text-dark); }
.main-tab::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.main-tab.active::after { width: 100%; }
.service-category { display: none; }
.service-category.active { display: block; animation: fadeSlideUp 0.5s ease forwards; }
.sub-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 3rem; justify-content: center; }
.sub-tab { background: transparent; border: 1px solid var(--border-d); padding: 0.45rem 1.3rem; border-radius: 30px; cursor: none; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted-d); transition: all 0.3s; }
.sub-tab.active, .sub-tab:hover { background: var(--text-dark); color: #fff; border-color: var(--text-dark); }
.service-display { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.service-list { display: none; }
.service-list.active { display: block; animation: fadeSlideUp 0.5s ease forwards; }
.service-list h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 400; color: var(--text-dark); }
.service-list ul { list-style: none; }
.service-list li { display: flex; justify-content: space-between; padding: 0.9rem 0; border-bottom: 1px solid var(--border-d); font-size: 0.95rem; color: var(--text-dark); transition: padding-left 0.3s ease, color 0.3s; cursor: none; }
.service-list li:hover { padding-left: 10px; color: var(--gold); }
.service-list li span:last-child { font-weight: 500; font-variant-numeric: tabular-nums; }
/* Service List Sub-Groups */
.service-list .sub-group-title {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 1.8rem 0 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-image-display { width: 100%; height: 600px; border-radius: 2px; overflow: hidden; position: sticky; top: 120px; }
.service-image-display img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease; }

/* PORTFOLIO */
.section-portfolio { padding: 8rem 0; }
.portfolio-swiper { width: 100%; padding: 3rem 0; }
.swiper-slide { width: 480px; height: 580px; border-radius: 2px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

/* GALLERY */
.section-gallery { padding: 8rem 0; }
.editorial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 3rem; }
.grid-item { border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); cursor: none; }
.grid-item img { width: 100%; height: auto; display: block; transition: transform 0.8s var(--ease), filter 0.6s ease; filter: saturate(0.85); }
.grid-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.grid-item:hover img { transform: scale(1.05); filter: saturate(1.05); }

/* CTA */
.section-cta { position: relative; height: 70vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cta-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(1); }
.cta-dark-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.65); }
.cta-content { position: relative; z-index: 10; color: #fff; max-width: 750px; padding: 0 2rem; }

/* FOOTER */
.section-footer { padding: 5rem 0 3rem; }
.section-footer.bg-ash-grey { background: #1c1d20; color: rgba(255, 255, 255, 0.7); }
.footer-top { margin-bottom: 4rem; }
.footer-logo { height: 60px; margin: 0 auto; opacity: 0.7; mix-blend-mode: multiply; }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 3rem; }
.section-footer.bg-ash-grey .footer-grid { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-col h4 { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 1.2rem; font-weight: 500; color: var(--text-dark); }
.section-footer.bg-ash-grey .footer-col h4 { color: var(--gold); }
.footer-col p { color: var(--text-muted-d); line-height: 2; font-size: 0.9rem; }
.section-footer.bg-ash-grey .footer-col p { color: rgba(255, 255, 255, 0.7); }
.social-links { display: flex; flex-direction: column; gap: 0.3rem; }
.social-links a { color: var(--text-muted-d); text-decoration: none; font-size: 0.9rem; line-height: 2; transition: color 0.3s; cursor: none; }
.section-footer.bg-ash-grey .social-links a { color: rgba(255, 255, 255, 0.6); }
.social-links a:hover { color: var(--gold); }
.section-footer.bg-ash-grey .social-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 2rem 0; margin-top: 3rem; color: var(--text-muted-d); font-size: 0.8rem; border-top: 1px solid rgba(0,0,0,0.06); letter-spacing: 1px; }
.section-footer.bg-ash-grey .footer-bottom { color: rgba(255, 255, 255, 0.4); border-top: 1px solid rgba(255, 255, 255, 0.06); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(60px); transition: opacity 1.4s var(--ease), transform 1.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-70px); transition: opacity 1.4s var(--ease), transform 1.6s var(--ease); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(70px); transition: opacity 1.4s var(--ease), transform 1.6s var(--ease); }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.88); transition: opacity 1.4s var(--ease), transform 1.6s var(--ease); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-children .stagger-item { opacity: 0; transform: translateY(40px); transition: opacity 1.2s var(--ease), transform 1.4s var(--ease); }
.stagger-children.visible .stagger-item { opacity: 1; transform: translateY(0); }
.stagger-children.visible .stagger-item:nth-child(1) { transition-delay: 0.15s; }
.stagger-children.visible .stagger-item:nth-child(2) { transition-delay: 0.30s; }
.stagger-children.visible .stagger-item:nth-child(3) { transition-delay: 0.45s; }
.stagger-children.visible .stagger-item:nth-child(4) { transition-delay: 0.60s; }
.stagger-children.visible .stagger-item:nth-child(5) { transition-delay: 0.75s; }
.stagger-children.visible .stagger-item:nth-child(6) { transition-delay: 0.90s; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* BOOKING DRAWER */
.booking-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.5s;
}
.booking-drawer.active {
    visibility: visible;
    pointer-events: auto;
}
.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}
.booking-drawer.active .drawer-overlay {
    opacity: 1;
}
.drawer-content {
    position: absolute;
    top: 0;
    right: -480px;
    width: 480px;
    height: 100%;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-l);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
    color: var(--text-light);
}
.booking-drawer.active .drawer-content {
    transform: translateX(-480px);
}
.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-l);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-header h2 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 1px;
}
.drawer-close {
    background: none;
    border: none;
    color: var(--text-muted-l);
    font-size: 2rem;
    cursor: none;
    transition: color 0.3s;
}
.drawer-close:hover {
    color: var(--gold);
}
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
/* Scrollbar styling */
.drawer-body::-webkit-scrollbar,
.booking-services-list::-webkit-scrollbar {
    width: 5px;
}
.drawer-body::-webkit-scrollbar-track,
.booking-services-list::-webkit-scrollbar-track {
    background: transparent;
}
.drawer-body::-webkit-scrollbar-thumb,
.booking-services-list::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 110, 0.2);
    border-radius: 10px;
}
.drawer-body::-webkit-scrollbar-thumb:hover,
.booking-services-list::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
.booking-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.step-label {
    font-family: var(--sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    border-bottom: 1px solid var(--border-l);
    padding-bottom: 0.5rem;
}
.booking-gender-tabs {
    display: flex;
    gap: 1rem;
}
.gender-tab {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-l);
    color: var(--text-muted-l);
    padding: 0.8rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: none;
    transition: all 0.3s var(--ease);
}
.gender-tab.active, .gender-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}
.booking-category-filters {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    scrollbar-width: none;
}
.booking-category-filters::-webkit-scrollbar {
    display: none;
}
.booking-filter-pill {
    background: transparent;
    border: 1px solid var(--border-l);
    color: var(--text-muted-l);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: none;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.booking-filter-pill:hover,
.booking-filter-pill.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}
.booking-filter-pill .selection-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 600;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.booking-services-list {
    display: none;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}
.booking-services-list.active {
    display: block;
    animation: fadeSlideUp 0.4s ease forwards;
}
.booking-service-group {
    margin-bottom: 1.5rem;
}
.booking-service-group h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 400;
    border-left: 2px solid var(--gold);
    padding-left: 0.5rem;
}
.booking-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    color: var(--text-muted-l);
    cursor: none;
    transition: background 0.2s, color 0.2s;
}
.booking-service-item:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
}
.booking-service-item input[type="checkbox"] {
    margin-right: 12px;
    accent-color: var(--gold);
    cursor: none;
}
.booking-service-item span:first-of-type {
    flex: 1;
}
.booking-service-item .price {
    font-weight: 500;
    color: var(--gold);
}
.booking-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.input-row {
    display: flex;
    gap: 1rem;
}
.input-row .input-group {
    flex: 1;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.input-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-l);
}
.booking-inputs input, .booking-inputs select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-l);
    padding: 0.8rem;
    color: var(--text-light);
    font-family: var(--sans);
    font-size: 0.85rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    cursor: none;
}
.booking-inputs input:focus, .booking-inputs select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}
.booking-inputs option {
    background: var(--black);
    color: var(--text-light);
}
.drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-l);
    background: rgba(5, 5, 5, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted-l);
}
.summary-row.total {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    border-top: 1px solid var(--border-l);
    padding-top: 0.6rem;
}
.summary-row.total span:last-child {
    color: var(--gold);
    font-size: 1.2rem;
}
.w-full {
    width: 100%;
}

/* BROCHURE MODAL */
.brochure-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-modal.active {
    visibility: visible;
    pointer-events: auto;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s;
}
.brochure-modal.active .modal-overlay {
    opacity: 1;
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: var(--black);
    border: 1px solid var(--border-l);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    overflow: hidden;
}
.brochure-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}
.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-l);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 1px;
}
.brochure-gender-toggle {
    display: flex;
    gap: 0.5rem;
}
.brochure-gender-btn {
    background: transparent;
    border: 1px solid var(--border-l);
    color: var(--text-muted-l);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: none;
    transition: all 0.3s;
}
.brochure-gender-btn.active, .brochure-gender-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}
.modal-close {
    background: none;
    border: none;
    color: var(--text-muted-l);
    font-size: 2rem;
    cursor: none;
    transition: color 0.3s;
    line-height: 1;
}
.modal-close:hover {
    color: var(--gold);
}
.modal-body {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
}
.brochure-viewer-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}
.brochure-page-wrap {
    width: 100%;
    max-width: 480px;
    height: 520px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-page-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.nav-arrow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-l);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    flex-shrink: 0;
}
.nav-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-l);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.page-indicator {
    font-size: 0.8rem;
    color: var(--text-muted-l);
    font-weight: 500;
}
.page-slider-container {
    width: 100%;
    max-width: 400px;
}
.page-slider-container input[type="range"] {
    width: 100%;
    background: var(--border-l);
    accent-color: var(--gold);
    height: 2px;
    outline: none;
    cursor: none;
}

/* GALLERY LIGHTBOX & EXPLORE CTA */
.gallery-explore-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox.active {
    visibility: visible;
    pointer-events: auto;
}
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-lightbox.active .lightbox-overlay {
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-muted-l);
    font-size: 2.5rem;
    cursor: none;
    transition: color 0.3s, transform 0.3s var(--ease);
    z-index: 10;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}
.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    padding: 2rem 6rem;
    z-index: 5;
}
.lightbox-image-wrap {
    position: relative;
    max-width: 85%;
    max-height: 70vh;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
}
.lightbox-image-wrap img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
    opacity: 0;
}
.lightbox-image-wrap img.loaded {
    opacity: 1;
}
.lightbox-caption {
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.85);
    color: rgba(255,255,255,0.7);
    font-family: var(--serif);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.lightbox-arrow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    font-size: 1.5rem;
    transition: all 0.3s var(--ease);
    z-index: 10;
    user-select: none;
}
.lightbox-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    transform: scale(1.05);
}
.prev-arrow {
    margin-right: 2rem;
}
.next-arrow {
    margin-left: 2rem;
}
.lightbox-footer {
    width: 100%;
    padding: 1.5rem 2rem 2.5rem;
    background: rgba(5,5,5,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.lightbox-counter {
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
}
.lightbox-counter .divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.4rem;
}
.lightbox-thumbnails-container {
    display: flex;
    gap: 0.6rem;
    max-width: 90%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}
.lightbox-thumbnails-container::-webkit-scrollbar {
    height: 4px;
}
.lightbox-thumbnails-container::-webkit-scrollbar-thumb {
    background: rgba(201,169,110,0.3);
    border-radius: 10px;
}
.lightbox-thumbnail {
    width: 60px;
    height: 45px;
    border-radius: 2px;
    overflow: hidden;
    cursor: none;
    opacity: 0.4;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
    flex-shrink: 0;
}
.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-thumbnail:hover {
    opacity: 0.7;
}
.lightbox-thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-image-column { position: relative; top: 0; }
    .about-image-frame .parallax-img { height: 420px; }
    .frame-border-accent { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .narrative-block { padding-left: 1.5rem; }
    .narrative-year { font-size: 1.8rem; }
    .parallax-img { height: 350px; }
    .service-display { grid-template-columns: 1fr; }
    .service-image-display { height: 400px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { align-items: center; }
    .swiper-slide { width: 300px; height: 400px; }
    .navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .services-grid { flex-direction: column; height: auto; }
    .service-card { height: 180px; }
    .editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cursor-dot, .cursor-ring { display: none; }
    html, body, a, button { cursor: auto !important; }
    .hero-logo { height: 110px; }
    
    /* Mobile Overrides for Drawer & Modal */
    .drawer-content { width: 100%; right: -100%; }
    .booking-drawer.active .drawer-content { transform: translateX(-100%); }
    .drawer-header { padding: 1.5rem; }
    .drawer-body { padding: 1.5rem; gap: 1.8rem; }
    .drawer-footer { padding: 1.5rem; }
    .brochure-page-wrap { height: 360px; }
    .brochure-viewer-container { gap: 0.5rem; }
    .nav-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .modal-content { width: 95%; }
    .modal-body { padding: 1rem; }

    /* Lightbox Mobile Overrides */
    .lightbox-content {
        padding: 1rem;
    }
    .lightbox-arrow {
        position: absolute;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        background: rgba(10, 10, 10, 0.75);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    .prev-arrow {
        left: 1.5rem;
        margin-right: 0;
    }
    .next-arrow {
        right: 1.5rem;
        margin-left: 0;
    }
    .lightbox-image-wrap {
        max-width: 95%;
        max-height: 60vh;
    }
    .lightbox-image-wrap img {
        max-height: 55vh;
    }
    .lightbox-thumbnails-container {
        display: none;
    }
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.2rem;
    }
}
@media (max-width: 600px) {
    .editorial-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
}
