:root {
    /* Base configuration (used for calculating variations if needed) */
    --ease-cinematic: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s var(--ease-cinematic);
    --transition-fast: all 0.3s ease;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;
}

/* 1) Default Theme: Cinematic Midnight (Dark Blue / Champagne) */
body,
body.theme-cinematic-default {
    --bg-dark: #0a0b10;
    --text-main: #fcfcfc;
    --text-muted: #8d90a0;
    --accent-color: #e6c8b3;
    --accent-hover: #fcf1e8;
}

/* 2) Theme: Classic Film (Charcoal / Gold) */
body.theme-classic-film {
    --bg-dark: #1a1a1a;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-color: #d4af37;
    --accent-hover: #f1da7a;
}

/* 3) Theme: Vintage Noir (Pitch Black / Silver) */
body.theme-vintage-noir {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #757575;
    --accent-color: #c0c0c0;
    --accent-hover: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom Cursor */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

::selection {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.script-font {
    font-family: var(--font-script);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.accent-color {
    color: var(--accent-color);
}

/* Scroll Progress Bar */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--accent-color);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(230, 200, 179, 0.5);
}



/* Loader Overlay (Curtain Reveal) */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.loader-curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--bg-dark);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
    pointer-events: auto;
}

.loader-curtain.left {
    left: 0;
    transform-origin: left;
}

.loader-curtain.right {
    right: 0;
    transform-origin: right;
}

.loader-overlay.hidden .loader-curtain.left,
.loader-overlay.hidden .loader-curtain.right {
    transform: scaleX(0);
}

.loader-overlay.hidden {
    visibility: hidden;
    transition: visibility 0s 1.5s;
}

.loader-content {
    position: relative;
    z-index: 2;
    transition: opacity 0.8s ease-out;
}

.loader-overlay.hidden .loader-content {
    opacity: 0;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(230, 200, 179, 0.5));
    }
}

/* Custom Cursor - Viewfinder Style */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(230, 200, 179, 0.4);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Hover logic applied via JS active class */
.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--accent-color);
    background-color: rgba(230, 200, 179, 0.1);
    backdrop-filter: blur(2px);
}

.cursor-hover .cursor-dot {
    background-color: transparent;
}

/* Touch devices have no real cursor — hide the custom cursor so it doesn't
   sit parked over the hero copy on mobile */
@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-ring { display: none !important; }
}


/* Navigation */
.cinema-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-slow);
    background: transparent;
}

.cinema-nav.scrolled {
    background: rgba(10, 11, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 2px;
}

.brand-logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-fast);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--accent-hover);
}

.nav-item:hover::after {
    width: 100%;
}

.social-links-nav a {
    color: var(--text-main);
    transition: var(--transition-fast);
}

.social-links-nav a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-cinema {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.btn-cinema:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 200, 179, 0.2);
}

.link-cinema {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.link-cinema:hover {
    color: var(--accent-color);
    gap: 15px;
    /* Arrow moves slightly */
}

/* Split Hero Section */
.split-hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    padding-top: 100px;
    /* offset nav */
}

.hero-left {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    padding: 4rem 10% 4rem 4rem;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Cinematic Glance Carousel */
.carousel-img {
    width: 100%;
    height: 110%;
    /* Parallax overflow */
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
    /* Start slightly zoomed */
    transition: opacity 2s var(--ease-cinematic), transform 8s linear;
}

.carousel-img.align-bottom {
    object-position: center bottom;
    /* Push image up to ensure bottom is visible */
    /* Keeps sunset couple in frame */
}

.carousel-img.align-top {
    object-position: center 20%;
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1);
    /* Slowly zoom out */
    z-index: 1;
}

.img-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    /* Ensure overlay stays on top of images */
}

.hero-kicker {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-headline .script-font {
    font-size: 6rem;
    display: block;
    margin-top: -10px;
    opacity: 0.9;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Philosophy Quote */
.philosophy-quote {
    padding: 10rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, #0d0e15 100%);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 2rem;
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.philosophy-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating Gallery */
.floating-gallery {
    padding: 6rem 4rem 12rem;
    background-color: #0d0e15;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .script-font {
    font-size: 4.5rem;
    color: var(--accent-color);
}

.title-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 2rem auto 0;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-cinematic);
    filter: brightness(0.8) contrast(1.1);
}

.frame:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.frame-large {
    height: 600px;
}

.frame-medium {
    height: 450px;
}

.frame-tall {
    height: 750px;
}

.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 16, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.frame-overlay i {
    color: var(--text-main);
    width: 40px;
    height: 40px;
    transform: scale(0.5);
    transition: var(--transition-fast);
}

.frame:hover .frame-overlay {
    opacity: 1;
}

.frame:hover .frame-overlay i {
    transform: scale(1);
}

/* Expanded Gallery Tweaks */
.expanded-gallery {
    /* Allow images to overflow slightly for a dramatic look */
    width: 110%;
    margin-left: -5%;
}

.expanded-gallery .frame {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}


/* Portfolio Call-to-Action */
.portfolio-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 0 2rem;
}

.portfolio-cta p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Dark Services Cards */
.services-dark {
    padding: 10rem 4rem;
    background: var(--bg-dark);
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.services-intro {
    position: sticky;
    top: 200px;
    height: fit-content;
}

.services-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 2rem;
    max-width: 300px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: #10121a;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

/* Hover-reveal internal image for services */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s var(--ease-cinematic), transform 1.5s var(--ease-cinematic);
    transform: scale(1.1);
    z-index: 0;
    filter: brightness(0.3) saturate(0.5);
}

.service-card:nth-child(1)::before {
    background-image: url('assets/magic_10.jpg');
}

.service-card:nth-child(2)::before {
    background-image: url('assets/magic_9.jpg');
}

.service-card:nth-child(3)::before {
    background-image: url('assets/magic_2.jpg');
}

.service-card:hover {
    transform: translateX(-10px);
    border-color: rgba(230, 200, 179, 0.4);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    transition: var(--transition-slow);
    z-index: 1;
}

.service-card:hover .service-number {
    color: rgba(230, 200, 179, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 80%;
    position: relative;
    z-index: 1;
}

.card-line {
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition-slow);
    z-index: 1;
}

.service-card:hover .card-line {
    width: 100%;
}

/* Testimonials - The Final Frame */
.testimonials-cinema {
    padding: 10rem 4rem;
    background: linear-gradient(to bottom, var(--bg-dark), #08090d);
}

.testimony-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    width: 100%;
    min-height: 250px;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
    max-width: 800px;
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s var(--ease-cinematic), transform 1.5s var(--ease-cinematic), visibility 1.5s;
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.review-slide .stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.review-slide blockquote {
    font-family: var(--font-body);
    font-size: 1.5rem;
    /* slightly larger for single focus */
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.review-slide cite {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.review-slide cite::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent-color);
}

/* Blur Reveal Animation Class (JS triggered) */
.blur-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 1s var(--ease-cinematic), filter 1s var(--ease-cinematic), transform 1s var(--ease-cinematic);
}

.blur-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


/* About Section */
.about-cinema {
    padding: 10rem 4rem;
    background: #0d0e15;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.polaroid-wrap {
    background: #15161f;
    padding: 2rem 2rem 6rem;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.8);
    transform: rotate(-3deg);
    transition: var(--transition-slow);
}

.polaroid-wrap:hover {
    transform: rotate(0deg) scale(1.02);
}

.director-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: sepia(10%) contrast(1.1);
}

.polaroid-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
}

.role-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.about-bio {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}


/* FAQ Section (Coming Soon) */
.faq-cinema {
    padding: 10rem 4rem;
    background: linear-gradient(to bottom, #0d0e15, var(--bg-dark));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-banner {
    text-align: center;
    padding: 3rem;
    border: 1px dashed rgba(230, 200, 179, 0.3);
    border-radius: 8px;
    margin-bottom: 3rem;
    background: rgba(230, 200, 179, 0.02);
}

.coming-soon-banner i {
    color: var(--accent-color);
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

.coming-soon-banner h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.coming-soon-banner p {
    color: var(--text-muted);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    opacity: 0.5;
    /* Disabled look for coming soon */
    cursor: not-allowed;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Contact Finale */
.contact-finale {
    padding: 15rem 2rem;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle glow behind text */
.contact-finale::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    filter: blur(200px);
    opacity: 0.05;
    z-index: 0;
}

.finale-content {
    position: relative;
    z-index: 1;
}

.finale-content h2 {
    font-family: var(--font-heading);
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.finale-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.large-btn {
    font-size: 1.2rem;
    padding: 1.5rem 4rem;
}


/* Footer */
.cinema-footer {
    background: #050608;
    padding: 6rem 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand .brand-tagline {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-links h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.footer-links a,
.footer-links p {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    padding-bottom: 1.25rem;
    /* keep copyright + credit clear of the fixed corner buttons (palette / back-to-top) */
    padding-inline: 4.25rem;
    color: #4a4d5e;
    font-size: 0.9rem;
}


/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--text-main);
    padding: 20px;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Theme Switcher UI */
.theme-switcher-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.theme-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
    z-index: 2;
    position: relative;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.theme-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.theme-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.theme-option.active {
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--accent-color);
    color: var(--text-main);
}

.theme-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: var(--transition-slow);
}

.lightbox.active img {
    transform: scale(1);
}

/* Hero Image Carousel */
.hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 2s var(--ease-cinematic), transform 2s var(--ease-cinematic);
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1);
}

/* Booking Form */
.booking-form {
    margin: 2rem auto 0 auto;
    max-width: 500px;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Animations Base */
.reveal-text,
.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--ease-cinematic), transform 1.2s var(--ease-cinematic);
}

.reveal-text.is-visible,
.fade-in-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 1024px) {
    .split-hero {
        flex-direction: column;
    }

    .hero-left {
        flex: none;
        padding: 8rem 2rem 4rem;
        text-align: center;
    }

    .hero-right {
        height: 50vh;
        flex: none;
    }

    .img-overlay-dark {
        background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
    }

    .hero-actions {
        justify-content: center;
    }

    .gallery-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-column {
        margin-top: 0 !important;
    }

    .services-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .services-intro {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

/* Floating Actions */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-dark);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(230, 200, 179, 0.4);
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 200, 179, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 200, 179, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 200, 179, 0);
    }
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .back-to-top {
        bottom: 90px;
        /* sit above the call button on mobile */
        right: 20px;
    }

    .nav-links {
        display: none;
        /* Add hamburger for production */
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-headline .script-font {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title .script-font {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}