/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
   :root {
    /* Color Palette */
    --clr-black: #0b0b0b;
    --clr-ivory: #f7f3ee;
    --clr-gold: #c6a46c;
    --clr-white: #ffffff;
    --clr-charcoal: #1a1a1a;
    --clr-bg: #0b0b0b;
    --clr-wine: #4b1722;
    --clr-rose: #d8b6a4;
    --clr-glass: rgba(11, 11, 11, 0.6);
    --clr-glass-border: rgba(198, 164, 108, 0.15);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-cinematic: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-black);
    color: var(--clr-ivory);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999; /* Increased to be above lightbox (11000) */
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(198, 164, 108, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998; /* Increased to be above lightbox */
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Hover States for cursor */
.cursor-hover .cursor {
    width: 0;
    height: 0;
}
.cursor-hover .cursor-follower {
    width: 80px;
    height: 80px;
    background-color: rgba(198, 164, 108, 0.1);
    border-color: var(--clr-gold);
    backdrop-filter: blur(2px);
}

/* ==========================================================================
   LOADING SCREEN
   ========================================================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--clr-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    text-align: center;
    overflow: hidden;
}

.loader-title {
    font-size: 3rem;
    color: var(--clr-gold);
    transform: translateY(100%);
}

.loader-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.luxury-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-fast);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid transparent;
}

.luxury-header.scrolled {
    background: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--clr-glass-border);
}

.nav-container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
}

.hamburger .line {
    width: 30px;
    height: 1px;
    background-color: var(--clr-ivory);
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

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

.nav-link:hover {
    color: var(--clr-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.brand-left {
    text-align: left;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-ivory);
    line-height: 1;
}

.brand-logo span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-gold);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--clr-gold);
    border-color: var(--clr-gold);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--clr-ivory);
    color: var(--clr-ivory);
}

.btn-secondary:hover {
    background-color: var(--clr-ivory);
    color: var(--clr-black);
}

.btn-outline {
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
}
.btn-outline:hover {
    background-color: var(--clr-gold);
    color: var(--clr-black);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-slide.active {
    opacity: 1;
    /* Ken burns effect applied via JS or keyframes */
    animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,11,11,0.3) 0%, rgba(11,11,11,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-headline {
    font-size: 5vw;
    color: var(--clr-ivory);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    opacity: 0; /* Animated by GSAP */
}

.hero-subheadline {
    font-size: 1.2rem;
    color: rgba(247, 243, 238, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0; /* Animated by GSAP */
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0; /* Animated by GSAP */
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0; /* Animated by GSAP */
}

.scroll-indicator p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--clr-gold);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ==========================================================================
   GLOBAL SECTION STYLES
   ========================================================================== */
section {
    padding: var(--spacing-xxl) 5%;
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-title {
    font-size: 4rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(247, 243, 238, 0.7);
    font-family: var(--font-body);
    font-weight: 300;
}

/* ==========================================================================
   CINEMATIC FILMS
   ========================================================================== */
.films-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}
.films-carousel::-webkit-scrollbar {
    height: 6px;
}
.films-carousel::-webkit-scrollbar-thumb {
    background: var(--clr-gold);
    border-radius: 10px;
}
.film-card {
    min-width: 600px;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}
.film-card:hover {
    transform: scale(1.02);
}
.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background var(--transition-fast);
}
.film-card:hover .film-overlay {
    background: rgba(0,0,0,0.3);
}
.play-icon {
    font-size: 3rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    transition: transform var(--transition-fast);
}
.film-card:hover .play-icon {
    transform: scale(1.1);
}
.film-title {
    font-size: 2rem;
    color: var(--clr-ivory);
}
.film-subtitle {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ==========================================================================
   INSTAGRAM GRID
   ========================================================================== */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}
.ig-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}
.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.ig-item:hover img {
    transform: scale(1.1);
}
.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.ig-item:hover .ig-overlay {
    opacity: 1;
}
.ig-overlay i {
    font-size: 2rem;
    color: var(--clr-white);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-black);
    transform-origin: right;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}
.about-image-wrapper.revealed::after {
    transform: scaleX(0);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.about-image-wrapper.revealed .about-img {
    transform: scale(1);
}

.about-text-wrapper {
    flex: 1;
    padding-left: var(--spacing-md);
}

.about-text-wrapper .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-desc {
    font-size: 1.2rem;
    color: rgba(247, 243, 238, 0.85);
    margin-bottom: 3rem;
}

.signature {
    font-family: 'Brush Script MT', cursive; /* Fallback for signature */
    font-size: 3rem;
    color: var(--clr-gold);
    opacity: 0.8;
}

/* ==========================================================================
   PORTFOLIO (MASONRY)
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.filter-btn {
    background: none;
    border: none;
    color: rgba(247, 243, 238, 0.6);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--clr-gold);
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.masonry-item img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.masonry-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none; /* crucial: prevents the overlay from blocking clicks to the image */
}

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

.masonry-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   STORIES / EDITORIAL SECTION
   ========================================================================== */
.stories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.story-card {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-card:nth-child(even) {
    flex-direction: row-reverse;
}

.story-img-wrapper {
    flex: 1.5;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.story-card:hover .story-img-wrapper img {
    transform: scale(1.05);
}

.story-content {
    flex: 1;
}

.story-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--clr-gold);
}

.story-location {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    display: block;
}

/* ==========================================================================
   EXPERIENCE / TIMELINE
   ========================================================================== */
.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(198, 164, 108, 0.3);
}

.timeline-item {
    margin-bottom: var(--spacing-lg);
    position: relative;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--clr-black);
    border: 1px solid var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--clr-gold);
    font-size: 1.2rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   DESTINATION
   ========================================================================== */
.destination-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.destination-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/1Y1A0189.JPG') center/cover;
    opacity: 0.3;
    z-index: 1;
    /* Apply a slow pan effect */
    animation: pan 20s infinite alternate linear;
}

@keyframes pan {
    0% { transform: scale(1.1) translateX(-2%); }
    100% { transform: scale(1.1) translateX(2%); }
}

.destination-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.dest-desc {
    margin: 2rem 0 3rem;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--clr-charcoal);
    padding: 4rem 3rem;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform var(--transition-fast);
}

.pricing-card.premium {
    background: linear-gradient(145deg, #1a1a1a, #0b0b0b);
    border-color: rgba(198, 164, 108, 0.3);
    transform: translateY(-20px);
}

.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.premium:hover {
    transform: translateY(-30px);
}

.pricing-card h3 {
    font-size: 2.5rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.6);
}

.pricing-card .price span {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--clr-ivory);
    margin-top: 0.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    position: relative;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    cursor: none; /* custom cursor */
}

.faq-question i {
    color: var(--clr-gold);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-top: 1rem;
    color: rgba(255,255,255,0.7);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.luxury-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.row {
    display: flex;
    gap: 1.5rem;
}

.luxury-form input,
.luxury-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: var(--clr-ivory);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    resize: none;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.submit-btn {
    width: 100%;
    margin-top: 2rem;
    cursor: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.luxury-footer {
    padding: var(--spacing-xl) 5% var(--spacing-md);
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--clr-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    background: var(--clr-black);
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
}

.whatsapp-btn {
    background: #25D366; /* WhatsApp color */
    color: var(--clr-white);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
    to { box-shadow: 0 0 20px rgba(37, 211, 102, 1); }
}
/* ==========================================================================
   ABOUT PAGE - EDITORIAL PHILOSOPHY
   ========================================================================== */
.philosophy-section {
    padding: 100px 5%;
    background-color: var(--clr-bg);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 11000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(11, 11, 11, 0.98); /* Slightly darker for better contrast */
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
}

.lightbox-content {
    max-height: 90vh;
    max-width: 80vw;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--clr-ivory);
    font-size: 2.5rem;
    font-weight: 300;
    transition: color 0.3s;
    cursor: pointer;
    z-index: 11001;
}

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

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 20px;
    color: var(--clr-ivory);
    font-size: 2.5rem;
    transition: color 0.3s, transform 0.3s;
    user-select: none;
    z-index: 11001;
}

.lightbox-prev {
    left: 20px;
}
.lightbox-prev:hover {
    color: var(--clr-gold);
    transform: translateY(-50%) translateX(-5px);
}

.lightbox-next {
    right: 20px;
}
.lightbox-next:hover {
    color: var(--clr-gold);
    transform: translateY(-50%) translateX(5px);
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
    body {
        cursor: auto; /* Reset custom cursor for touch */
    }
    .cursor, .cursor-follower {
        display: none !important;
    }

    .nav-container {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .nav-right {
        gap: 1rem;
    }
    .brand-left {
        flex: 1;
        text-align: right;
    }
    .brand-logo {
        font-size: 1.4rem;
    }
    .nav-menu {
        display: none; 
        flex-direction: column;
        position: fixed; /* Fixed to viewport */
        top: 80px; /* Below header */
        left: 0;
        width: 100vw;
        height: calc(100vh - 80px); /* Full screen menu */
        background: rgba(11, 11, 11, 0.98);
        padding: 3rem 2rem;
        gap: 2rem;
        z-index: 9999;
        text-align: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        font-size: 1.5rem; /* Larger links for tap targets */
    }
    .hamburger {
        display: flex;
        z-index: 10001; /* Above everything */
    }
    .hamburger.active .line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hamburger.active .line:nth-child(2) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Lightbox Mobile Adjustments */
    .lightbox-content-wrapper {
        width: 100vw;
        height: 100vh;
    }
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
    .lightbox-prev, .lightbox-next {
        padding: 10px;
        font-size: 2rem;
        background: rgba(0,0,0,0.5); /* Make buttons visible on mobile */
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    
    .hero-headline {
        font-size: 2.8rem; /* Fix horizontal scroll */
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .about-container, .about-container.reverse {
        flex-direction: column !important;
    }
    .about-image-wrapper {
        height: 50vh;
        width: 100%;
    }
    
    .masonry-grid {
        column-count: 1; /* Stack masonry entirely on mobile */
    }
    
    .story-card, .story-card:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .story-img-wrapper {
        width: 100%;
        height: 40vh;
    }
    
    .experience-timeline::before {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left !important;
        left: 0 !important;
    }
    .timeline-icon {
        left: 5px !important;
    }
    
    .pricing-cards {
        flex-direction: column;
    }
    .form-group.row {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* ==========================================================================
   POLISH PASS: RESPONSIVE, ACCESSIBILITY & PREMIUM VISUALS
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--clr-gold);
    outline-offset: 4px;
}

.nav-link.active {
    color: var(--clr-gold);
}

.hamburger {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    text-align: center;
}

.hero-section {
    min-height: 100vh;
    min-height: 100svh;
}

.hero-overlay {
    background:
        radial-gradient(circle at 50% 38%, rgba(75, 23, 34, 0.12), transparent 32%),
        linear-gradient(to bottom, rgba(11,11,11,0.2) 0%, rgba(11,11,11,0.72) 74%, rgba(11,11,11,0.96) 100%);
}

.hero-content {
    margin-top: 3rem;
}

.hero-headline {
    font-size: clamp(3.2rem, 7vw, 7.8rem);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.section-title {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.proof-section {
    padding: 3rem 5%;
    background: linear-gradient(90deg, rgba(75, 23, 34, 0.35), rgba(198, 164, 108, 0.08), rgba(11, 11, 11, 0.9));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
}

.proof-item {
    background: rgba(11,11,11,0.78);
    padding: 2rem;
    text-align: center;
}

.proof-item span {
    display: block;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.proof-item p {
    margin-top: 0.75rem;
    color: rgba(247, 243, 238, 0.72);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

.featured-stories-section {
    padding-top: var(--spacing-xl);
}

.featured-stories-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.featured-story {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    isolation: isolate;
}

.featured-story.tall {
    min-height: 540px;
}

.featured-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.featured-story::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.08) 62%);
    z-index: 1;
}

.featured-story:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.featured-story-copy {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
}

.featured-story-copy span {
    color: var(--clr-rose);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.featured-story-copy h3 {
    margin-top: 0.35rem;
    color: var(--clr-ivory);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.films-carousel {
    scroll-padding-inline: 5%;
}

.film-card {
    min-width: min(600px, 82vw);
    height: clamp(260px, 42vw, 400px);
}

.film-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    padding: 0 1rem;
}

.ig-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.portfolio-filters {
    flex-wrap: wrap;
}

.filter-btn {
    cursor: pointer;
    min-height: 44px;
    padding: 0 0.2rem;
}

.masonry-item img {
    background: var(--clr-charcoal);
}

.pricing-card,
.testimonial-card,
.featured-story {
    border-radius: 8px;
}

.testimonial-slider {
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-card {
    border: 1px solid rgba(198, 164, 108, 0.22);
    background: linear-gradient(145deg, rgba(75, 23, 34, 0.22), rgba(26, 26, 26, 0.95));
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.testimonial-card .quote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    color: var(--clr-ivory);
}

.client-name {
    margin-top: 2rem;
    color: var(--clr-gold);
    font-size: 1.5rem;
}

.client-venue {
    display: block;
    margin-top: 0.35rem;
    color: rgba(247, 243, 238, 0.58);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

.cta-btn i {
    line-height: 1;
}

@media (max-width: 1024px) {
    .nav-menu {
        top: 0;
        height: 100vh;
        height: 100dvh;
        padding: 8rem 2rem 3rem;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 14vw, 4.6rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    section {
        padding: 5rem 5%;
    }

    .proof-grid,
    .featured-stories-grid {
        grid-template-columns: 1fr;
    }

    .featured-story,
    .featured-story.tall {
        min-height: 380px;
    }

    .masonry-grid {
        column-count: 2;
        column-gap: 0.75rem;
    }

    .masonry-item {
        margin-bottom: 0.75rem;
    }

    .pricing-cards {
        gap: 1.5rem;
    }

    .pricing-card.premium {
        transform: none;
    }
}

@media (max-width: 640px) {
    .luxury-header {
        padding: 1rem 0;
    }

    .nav-container {
        max-width: 92%;
    }

    .brand-logo {
        font-size: 1.15rem;
    }

    .brand-logo span {
        font-size: 0.58rem;
        letter-spacing: 2px;
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .film-card {
        min-width: 86vw;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .portfolio-filters {
        gap: 0.8rem;
    }

    .filter-btn {
        font-size: 0.78rem;
    }

    .masonry-grid {
        column-count: 1;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: none;
    }

    .footer-contact p {
        font-size: 0.95rem;
        overflow-wrap: anywhere;
    }

    .floating-cta {
        right: 1rem;
        bottom: 1rem;
        gap: 0.75rem;
    }

    .cta-btn {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
