/* 
   EVER AFTER LENS - CSS DESIGN SYSTEM
   Editorial, Romantic, Minimal, Luxurious
*/

:root {
    /* Color Palette */
    --bg-primary: #fdfcf8;
    --bg-secondary: #f8f4ef;
    --bg-ivory: #faf8f5;
    --bg-dark: #1a1a1a;
    --accent: #bcb38a;
    /* Warm Champagne Gold from Logo */
    --accent-soft: #f4efea;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --text-light: #ffffff;
    --border-color: rgba(45, 45, 45, 0.08);

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Pinyon Script', cursive;

    --border-radius-m: 12px;
    --border-radius-s: 8px;
    --border-radius-pill: 100px;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 3rem;
    --space-xxl: 12rem;

    /* Layout */
    --container-width: 1400px;
    --container-narrow: 800px;
    --header-height: 200px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-med: 0.4s var(--ease-out-expo);

    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-dark-bg: rgba(0, 0, 0, 0.35);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px) saturate(180%);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

body.has-custom-cursor {
    cursor: none;
}

body.loading {
    overflow: hidden;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

@media (max-width: 1024px),
(hover: none) {
    .custom-cursor {
        display: none;
    }

    body.has-custom-cursor {
        cursor: auto;
    }
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border 0.3s;
}

.cursor-text {
    position: fixed;
    transform: translate(-50%, -50%);
    color: #000;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-cursor.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

.custom-cursor.view-mode .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-color: transparent;
}

.custom-cursor.view-mode {
    mix-blend-mode: normal;
}

.custom-cursor.view-mode .cursor-text {
    opacity: 1;
    color: #000;
}

.custom-cursor.view-mode .cursor-dot {
    opacity: 0;
}

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9998;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: transform 1s var(--ease-out-expo);
}

.page-loader.hidden {
    transform: translateY(-100%);
}

.loader-content {
    text-align: center;
    overflow: hidden;
}

.loader-logo img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    animation: loaderReveal 1.5s var(--ease-out-expo);
}

.loader-bar {
    width: 0;
    height: 1px;
    background-color: var(--accent);
    margin: 0 auto;
    animation: loaderProgress 1.5s var(--ease-out-expo) forwards;
}

@keyframes loaderReveal {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes loaderProgress {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-s);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-med);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

.narrow {
    max-width: var(--container-narrow);
}

.section-padding {
    padding: var(--space-xl) 0;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light);
}

.bg-soft {
    background-color: var(--bg-secondary);
}

.bg-accent-soft {
    background-color: var(--accent-soft);
}

.bg-dark {
    background-color: var(--bg-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
.display-title {
    font-family: var(--font-display);
    font-weight: 400;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: var(--space-m);
}

.hero-title em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    font-size: 1.4em;
    color: var(--accent);
    margin: 0 0.1em;
    vertical-align: middle;
}

.display-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-m);
}

.display-title em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: var(--space-m);
    display: block;
    text-transform: uppercase;
}

.category-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-s);
    text-transform: uppercase;
}

.all-caps-statement {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: var(--space-m);
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Buttons & Links */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-out-expo), background-color 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
    border-radius: var(--border-radius-pill);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--text-main);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-main);
}

.link-underlined {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    margin-top: 1rem;
}

.link-underlined:hover {
    color: var(--accent);
    border-color: transparent;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-med);
}

.site-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    height: 120px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    justify-self: start;
}

.header-logo .brand-logo img {
    height: 160px;
    width: auto;
    transition: var(--transition-med);
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.site-header.scrolled .brand-logo img {
    height: 90px;
}

.header-nav {
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background-color: var(--accent);
    color: var(--text-light) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-pill);
}

.header-social-stack {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-main);
    position: absolute;
    transition: var(--transition-med);
}

.mobile-nav-toggle span:first-child {
    top: 0;
}

.mobile-nav-toggle span:last-child {
    bottom: 0;
}

.mobile-nav-toggle.active span:first-child {
    transform: translateY(10px) rotate(45deg);
}

.mobile-nav-toggle.active span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}

.site-header.scrolled .mobile-nav-toggle span {
    background-color: var(--text-main);
}

/* Editorial Section */
.bg-ivory {
    background-color: var(--bg-ivory);
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    /* Space for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 252, 248, 0.7);
    /* Transparent white/ivory overlay */
}

.hero-content {
    color: var(--text-main);
    /* Dark text for light overlay */
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto var(--space-m);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-sub-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}


.intro-section {
    padding-bottom: var(--space-m);
    /* Reduced gap */
    position: relative;
    overflow: hidden;
}

.intro-accent-left {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-script);
    font-size: 30vw;
    /* Increased size for impact */
    color: rgba(188, 163, 138, 0.08);
    /* Slightly more visible */
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    z-index: -1;
}

.intro-accent-right {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    /* Increased opacity */
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.intro-section .intro-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Editorial Section */
.editorial-story-section {
    padding-top: var(--space-m);
    /* Reduced gap */
}

.editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
}

.editorial-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: var(--space-m);
    text-transform: uppercase;
}

.editorial-divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    margin-bottom: var(--space-m);
}

.editorial-paragraph {
    max-width: 450px;
}

/* Carousel Styling */
.editorial-col-carousel {
    position: relative;
    width: 100%;
}

.editorial-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    /* Fixed 3:2 aspect ratio for all images */
    background-color: #f0f0f0;
    overflow: hidden;
    border-radius: var(--border-radius-m);
}

.carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s var(--ease-out-expo);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    border-radius: 50%;
}

.carousel-nav:hover {
    background: #fff;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav svg {
    color: var(--text-main);
}

/* About Section */
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    padding-bottom: 125%;
    /* Portrait aspect ratio */
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery-carousel {
    margin-top: var(--space-m);
    overflow-x: auto;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding-right: 2rem;
    /* Matches gap to ensure seamless loop */
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    flex-shrink: 0;
    height: 500px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
    /* Keep image scale effect contained */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background-color: transparent;
    transition: transform 1.2s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    color: var(--text-light);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Testimonial Section */
.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.3;
    margin: 2rem 0;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-style: normal;
}

/* Journal Section - Full Width Split Layout */
.journal-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    /* Adds substantial spacing between posts so they do not touch */
    padding: 0 4rem;
    /* Adds breathing room on the sides so it doesn't bleed edge-to-edge */
}

.journal-split {
    display: flex;
    flex-direction: column;
    /* Mobile first */
    min-height: 60vh;
    /* Reduced height to make images smaller */
    background: var(--bg-primary);
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    /* Adjusted for mobile */
}

.split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.journal-split:hover .split-image img {
    transform: scale(1.05);
}

.split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--bg-ivory);
    /* Soft contrast against main bg */
}

.split-inner {
    max-width: 500px;
}

.split-date {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.split-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-display);
    color: var(--text-main);
}

.split-excerpt {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Alternate row directions for desktop */
@media (min-width: 1024px) {
    .journal-split {
        flex-direction: row;
    }

    .journal-split:nth-child(even) {
        flex-direction: row-reverse;
    }

    .journal-split:nth-child(even) .split-content {
        background: var(--bg-soft);
        /* Give the second block a slightly different tone */
    }

    .split-image {
        flex: 0 0 50%;
        /* Image takes 50% of width (reduced from 55%) */
    }

    .split-content {
        flex: 0 0 50%;
        padding: 6rem;
    }
}



/* Services Section - Premium Overhaul */
.services-section {
    position: relative;
    overflow: visible;
    background-color: #ffffff;
    color: #1a1a1a;
}

.services-section .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 2rem 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .services-section .container {
        grid-template-columns: 1fr;
    }

    .service-hover-preview {
        display: none;
    }
}

.section-header {
    grid-column: 1 / -1;
    margin-bottom: var(--space-m);
}

.services-list {
    grid-column: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-item {
    display: flex;
    align-items: center;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-m);
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--ease-out-expo);
}

.service-item:hover,
.service-item.is-hovered {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
}

.service-num {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-right: 5rem;
    width: 30px;
}

.service-title {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    flex-grow: 1;
    margin: 0;
    transition: transform 0.5s var(--ease-out-expo), color 0.4s;
    letter-spacing: 0.05em;
}

.service-arrow {
    opacity: 0.2;
    transform: translateX(-40px);
    transition: all 0.5s var(--ease-out-expo);
    color: var(--accent);
}

.service-item:hover .service-title,
.service-item.is-hovered .service-title {
    transform: translateX(40px);
    color: var(--accent);
}

.service-item:hover .service-arrow,
.service-item.is-hovered .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.6s var(--ease-out-expo);
}

.service-item:hover .service-line,
.service-item.is-hovered .service-line {
    width: 100%;
}

/* Refined Preview Container */
.service-hover-preview {
    grid-column: 2;
    position: sticky;
    top: 150px;
    /* Aligns with the list */
    width: 100%;
    height: 600px;
    pointer-events: auto;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: var(--border-radius-m);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


.service-hover-preview.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.preview-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    overflow: hidden;
}

.preview-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.6s ease;
}

.preview-inner img.changing {
    opacity: 0;
}

.preview-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-hover-preview:hover .preview-arrow {
    opacity: 1;
}

.preview-arrow:hover {
    background: var(--accent);
    color: white;
}

.preview-arrow.prev {
    left: 20px;
}

.preview-arrow.next {
    right: 20px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .service-item {
        padding: 1rem 0.75rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .service-num {
        margin-right: 1rem;
        font-size: 0.7rem;
    }

    .service-title {
        font-size: 1rem;
        transform: none !important;
    }

    .service-arrow {
        transform: none !important;
        opacity: 0.5;
    }

    .service-hover-preview {
        display: none;
    }
}

/* Final CTA */
.final-cta {
    padding: var(--space-xxl) 0;
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-m);
}

/* Footer */
.site-footer {
    padding: var(--space-xl) 0 var(--space-m);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 1.5fr;
    /* 5 columns for Brand, Explore, Resources, Social, Map */
    gap: 2rem;
    margin-bottom: var(--space-xl);
    align-items: start;
}

.footer-map-container {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.1);
}

.social-links {
    display: flex;
    flex-direction: row;
    /* Changed to row */
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-med);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.brand-summary {
    max-width: 300px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer-brand .footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--text-main);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--text-main);
    transform: translateY(-5px);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-social-stack {
        display: none;
    }

    .header-nav {
        width: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(253, 252, 248, 0.95);
        backdrop-filter: blur(25px) saturate(1.2);
        -webkit-backdrop-filter: blur(25px) saturate(1.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.6s var(--ease-out-expo);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .grid-two-col {
        gap: 3rem;
    }

    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    /* Global containment */
    .container {
        padding: 0 1.25rem;
    }

    .container-fluid {
        padding: 0 1rem;
    }

    .section-padding {
        padding: var(--space-l) 0;
    }

    /* Header */
    .site-header {
        height: 80px;
    }

    .site-header.scrolled {
        height: 70px;
    }

    .header-logo .brand-logo img {
        height: 55px;
    }

    .site-header.scrolled .brand-logo img {
        height: 45px;
    }

    /* Hero */
    .hero-section {
        padding-top: 100px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-sub-text {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }

    /* Intro */
    .intro-accent-left {
        font-size: 50vw;
        left: -10%;
        overflow: hidden;
    }

    .intro-section .intro-body {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .all-caps-statement {
        font-size: 1.1rem;
    }

    /* Editorial */
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .editorial-headline {
        font-size: 1.8rem;
    }

    .editorial-paragraph {
        font-size: 1rem;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    /* About */
    .grid-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image .image-wrapper {
        padding-bottom: 100%;
        /* Square on mobile */
    }

    .about-text {
        text-align: center;
    }

    .about-body p {
        font-size: 1rem;
    }

    /* Services */
    .services-section .container {
        grid-template-columns: 1fr;
    }

    .service-hover-preview {
        display: none;
    }

    .service-num {
        margin-right: 1rem;
    }

    .service-item:hover .service-title {
        transform: none;
    }

    .service-item:hover .service-arrow {
        transform: none;
    }

    /* Gallery */
    .gallery-item {
        width: 280px;
        height: 350px;
    }

    .carousel-track {
        gap: 1rem;
    }

    .gallery-header .display-title {
        font-size: 1.8rem;
    }

    /* Testimonial */
    .testimonial-quote {
        font-size: 1.4rem;
    }

    /* Journal */
    .journal-showcase {
        padding: 0 1rem;
        gap: 4rem;
    }

    .split-image {
        min-height: 30vh;
    }

    .split-content {
        padding: 2.5rem 1.5rem;
    }

    .split-title {
        font-size: 1.8rem;
    }

    .split-excerpt {
        font-size: 1rem;
    }

    /* CTA */
    .final-cta {
        padding: var(--space-l) 0;
    }

    .cta-description {
        font-size: 1rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .footer-map-container {
        height: 180px;
    }

    .brand-summary {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        display: contents;
    }

    .footer-col {
        grid-column: span 1;
    }

    .social-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    /* Display title global */
    .display-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    p {
        font-size: 1rem;
    }

    /* Animations - reduce motion for performance */
    .service-item:hover .service-row {
        transform: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-section {
        min-height: 75vh;
        padding-top: 90px;
    }

    .gallery-item {
        width: 240px;
        height: 300px;
    }

    .split-content {
        padding: 2rem 1rem;
    }

    .split-title {
        font-size: 1.5rem;
    }

    .editorial-headline {
        font-size: 1.5rem;
    }

    .all-caps-statement {
        font-size: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .journal-showcase {
        padding: 0 0.75rem;
        gap: 3rem;
    }

    .btn {
        padding: 0.85rem 1.75rem;
    }
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: var(--border-radius-m);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-s);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-med);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.w-100 {
    width: 100%;
    text-align: center;
}

.form-message {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
}

.form-message.success {
    color: #4CAF50;
}

.form-message.error {
    color: #f44336;
}

/* Floating Instagram Button */
.floating-instagram {
    position: fixed;
    bottom: 180px; /* Above WhatsApp button */
    right: 35px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
    cursor: pointer;
}

.floating-instagram:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    color: white;
}

.floating-instagram svg {
    margin-top: 1px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 105px;
    /* Above back-to-top button */
    right: 35px;
    /* Aligned with back-to-top center */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
    cursor: pointer;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

.floating-whatsapp svg {
    margin-top: 2px;
    margin-left: 1px;
}

@media (max-width: 1024px) {
    .grid-two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .floating-instagram {
        bottom: 135px; /* Above WhatsApp button on mobile */
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .floating-instagram svg {
        width: 24px;
        height: 24px;
    }

    .floating-whatsapp {
        bottom: 75px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   REELS CAROUSEL & LIGHTBOX STYLE SYSTEM (Luxurious & Modern)
   ========================================================================== */

.reels-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-xl) 0;
}

.reels-outer-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.reels-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 4rem 3rem;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--accent) rgba(0, 0, 0, 0.05);
    scroll-snap-type: x mandatory;
    cursor: grab;
    will-change: transform;
    -webkit-overflow-scrolling: touch;
}

.reels-scroll-container::-webkit-scrollbar {
    display: block;
    height: 3px;
}

.reels-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}

.reels-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: var(--border-radius-pill);
}

.reels-scroll-container:active {
    cursor: grabbing;
    user-select: none;
}

.reel-card-item {
    flex: 0 0 260px;
    width: 260px;
    aspect-ratio: 9/16;
    height: 462px;
    background-color: #141414;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
}

.reel-card-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15), 0 0 15px rgba(188, 179, 138, 0.15);
}

.reel-card-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.reel-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card-item:hover .reel-card-video {
    transform: scale(1.05);
}

.reel-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
    transition: background 0.4s ease;
}

.reel-card-item:hover .reel-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.reel-card-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card-play-btn {
    width: 48px;
    height: 48px;
    background: rgba(188, 179, 138, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.reel-card-item:hover .reel-card-play-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.reel-card-play-btn:hover {
    background: #fff;
    transform: scale(1.1) !important;
}

.reel-card-play-btn svg {
    margin-left: 2px;
    width: 20px;
    height: 20px;
}

/* Lightbox System */
.reels-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reels-lightbox.active {
    display: flex;
    opacity: 1;
}

.reels-lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reels-lightbox-close:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1) rotate(90deg);
}

/* Lightbox Navigation Chevrons */
.reels-lightbox-nav {
    position: absolute;
    left: calc(50% + 240px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reels-lightbox-nav:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.1);
}

.reels-lightbox-nav.prev {
    top: calc(50% - 60px);
}

.reels-lightbox-nav.next {
    top: calc(50% + 10px);
}

/* Hide on medium/small viewports and rely on gestures/swiping */
@media (max-width: 1024px) {
    .reels-lightbox-nav {
        display: none !important;
    }
}

.reels-lightbox-content {
    width: 100%;
    max-width: 400px;
    height: 85vh;
    max-height: 720px;
    display: flex;
    position: relative;
    animation: lightboxSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lightboxSlideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Vertically Scrollable Reels Swipe Container */
.reels-swipe-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    -webkit-overflow-scrolling: touch;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.reels-swipe-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Reel Slide */
.reel-slide {
    width: 100%;
    height: 100%;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.reels-lightbox-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reels-swipe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Text Overlay inside video container */
.reels-lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reels-lightbox-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.reels-lightbox-brand {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Custom Mute Overlay Button */
.reels-lightbox-mute-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.reels-lightbox-mute-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-color: #fff;
    transform: scale(1.08);
}

.reels-lightbox-mute-btn svg {
    width: 18px;
    height: 18px;
}

/* Linear Progress Bar at bottom of each video */
.reels-lightbox-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 11;
}

.progress-bar-fill {
    height: 100%;
    width: 100%;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.1s linear;
}

/* Dynamic buffering spinner overlay */
.reels-lightbox-loader {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reels-lightbox-loader.active {
    opacity: 1;
}

.loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(188, 179, 138, 0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Center Play/Pause Indicator Animation */
.reels-lightbox-play-cue {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 9;
}

.reels-lightbox-play-cue.animate-play {
    animation: playCueBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes playCueBounce {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    40% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0;
    }
}

.reels-lightbox-play-cue svg {
    width: 28px;
    height: 28px;
}

/* Speciality Video Showcase Grid Styles */
.video-grid-item {
    cursor: auto !important;
    margin-bottom: 30px;
    break-inside: avoid;
}

.speciality-video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #000;
}

.speciality-showcase-video {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: cover;
}

/* Adjustments for Reels mobile scrolling responsive experience */
@media (max-width: 768px) {
    .reels-scroll-container {
        padding: 1rem 1.5rem 2.5rem;
        gap: 1.2rem;
    }
    
    .reel-card-item {
        flex: 0 0 210px;
        width: 210px;
        height: 373px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    /* Force play buttons to be elegantly visible on mobile since there is no hover */
    .reel-card-play-btn {
        opacity: 0.95 !important;
        transform: scale(1) translateY(0) !important;
        background: var(--accent) !important;
        color: #fff !important;
    }
    
    .reels-lightbox-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .reels-lightbox-content {
        height: 80vh;
    }
    
    .reels-lightbox-title {
        font-size: 1.25rem;
    }
}

/* Premium Video badge overlay indicators for specialties & curated moments */
.video-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary, #c5a880);
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.gallery-item:hover .video-badge-overlay,
.grid-item:hover .video-badge-overlay {
    background: var(--primary, #c5a880);
    color: #000;
    transform: scale(1.1) rotate(360deg);
    border-color: var(--primary, #c5a880);
}

.play-badge-icon {
    width: 16px;
    height: 16px;
    margin-left: 2px; /* Center-align play triangle perfectly */
}

/* Lightbox video specific elements */
.lightbox-video-container {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-video {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    outline: none;
}