/* ==========================================================================
   Base & Reset — Photo Factory Luxury Editorial System
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-bg: #F7F3EE;
    /* Warm ivory / soft cream */
    --clr-ivory: #F7F3EE;
    --clr-beige: #EFE5DD;
    /* Subtle warm beige */
    --clr-card: #FFFFFF;
    /* Clean card surface */
    --clr-card-cream: #FAF7F2;
    /* Elevated cream card */
    --clr-burgundy: #5B1722;
    /* Deep luxury burgundy / wine */
    --clr-burgundy-light: #7A2433;
    --clr-dark: #1D1B1A;
    /* Very dark charcoal */
    --clr-text: #1D1B1A;
    /* Primary charcoal text */
    --clr-text-secondary: #756B66;
    /* Muted warm gray/brown */
    --clr-gold: #C5A880;
    /* Muted champagne gold */
    --clr-white: #FFFFFF;
    --clr-border: rgba(91, 23, 34, 0.08);
    --clr-border-subtle: rgba(29, 27, 26, 0.06);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 7rem;
}

@media (max-width: 900px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 4.5rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==========================================================================
   Section Heading Hierarchy & Utility Classes
   ========================================================================== */
.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--clr-burgundy);
    margin-bottom: 0.65rem;
    display: block;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.85rem);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--clr-text);
    margin-bottom: 0;
}

.section-divider {
    width: 48px;
    height: 1.5px;
    background-color: var(--clr-burgundy);
    margin: 1.25rem auto 1.25rem;
    opacity: 0.85;
}

.section-divider.left {
    margin-left: 0;
    margin-right: auto;
}

.section-divider.divider-gold {
    background-color: var(--clr-gold);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: var(--clr-text-secondary);
    margin-top: 0.5rem;
}

.section-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    color: var(--clr-text-secondary);
    max-width: 620px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
}

.text-gold {
    color: var(--clr-gold) !important;
}

.text-light {
    color: var(--clr-ivory) !important;
}

.text-muted-light {
    color: rgba(247, 243, 238, 0.75) !important;
}

.text-center {
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.mt-4 {
    margin-top: 2rem;
}

/* ==========================================================================
   Luxury Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(91, 23, 34, 0.2);
}

.btn-primary:hover {
    background-color: var(--clr-burgundy-light);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 23, 34, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-burgundy);
    color: var(--clr-burgundy);
}

.btn-outline:hover {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Editorial Backgrounds & Dividers
   ========================================================================== */
.bg-ivory {
    background-color: var(--clr-ivory);
}

.bg-beige {
    background-color: var(--clr-beige);
}

.bg-dark {
    background-color: var(--clr-dark);
    color: var(--clr-ivory);
}

/* Elegant Section Divider */
.editorial-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(29, 27, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(3.5rem, 6vw, 6rem) 0;
}

.editorial-divider span {
    background-color: var(--clr-bg);
    padding: 0 1.75rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-burgundy);
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.bg-ivory .editorial-divider span {
    background-color: var(--clr-ivory);
}

.bg-beige .editorial-divider span {
    background-color: var(--clr-beige);
}

.bg-dark .editorial-divider span {
    background-color: var(--clr-dark);
    color: var(--clr-gold);
}

/* Floating WhatsApp CTA */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
    transform: scale(1.1);
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 48px;
        height: 48px;
    }

    .floating-wa svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   Header / Navbar — Premium Luxury Editorial
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem clamp(1.25rem, 4%, 3.5rem);
    background-color: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(44, 43, 41, 0.05);
    box-shadow: 0 2px 24px rgba(44, 43, 41, 0.04);
    transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled compact state (added via JS) */
.site-header.scrolled {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    background-color: rgba(253, 251, 247, 0.98);
    box-shadow: 0 8px 32px rgba(44, 43, 41, 0.08);
}

/* ---- Logo ---- */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--clr-text);
    flex-shrink: 0;
}

.brand-logo-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.11);
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: block;
}

.logo:hover .brand-logo-img {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--clr-text);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.logo:hover .logo-text {
    color: var(--clr-burgundy);
}

/* ---- Desktop Navigation Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.2vw, 2.4rem);
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--clr-text);
    text-decoration: none;
    padding-bottom: 3px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Animated underline — expands from left on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-burgundy);
    transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Active link state */
.nav-link.active {
    color: var(--clr-burgundy);
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--clr-burgundy);
}

/* Mobile-only CTA inside nav (hidden on desktop) */
.nav-mobile-cta {
    display: none;
}

/* ---- Desktop WhatsApp CTA Button ---- */
.header-cta {
    flex-shrink: 0;
}

.nav-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-text);
    text-decoration: none;
    border: 1px solid rgba(44, 43, 41, 0.3);
    padding: 0.58rem 1.15rem;
    border-radius: 6px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, transform 0.3s ease;
}

.nav-wa-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--clr-burgundy);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.nav-wa-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-wa-btn svg,
.nav-wa-btn span,
.nav-wa-btn {
    position: relative;
    z-index: 1;
}

.nav-wa-btn:hover {
    color: var(--clr-white);
    border-color: var(--clr-burgundy);
}

/* ---- Hamburger Button ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
    flex-shrink: 0;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--clr-text);
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8.25px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.25px) rotate(-45deg);
}

/* ==========================================================================
   Mobile / Tablet Navigation (≤ 900px)
   ========================================================================== */
@media (max-width: 900px) {

    .hamburger {
        display: flex;
        order: 3;
    }

    .header-cta {
        display: none;
    }

    /* Full-screen slide-in panel */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: -webkit-fill-available;
        background-color: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 205;
        pointer-events: none;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 5rem 2rem 3rem;
        box-sizing: border-box;

        /* Hidden state */
        opacity: 0;
        transform: translateY(-10px);
        transition:
            opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Individual nav items — staggered feel via sibling selectors */
    .nav-link {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 6vw, 2.75rem);
        font-weight: 400;
        letter-spacing: 0.05em;
        color: var(--clr-text);
        text-transform: uppercase;
        padding: 0.65rem 0;
        width: 100%;
        text-align: center;
        border-bottom: none;
    }

    .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: 4px;
        height: 1px;
        background-color: var(--clr-accent);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    /* Mobile WhatsApp CTA inside nav */
    .nav-mobile-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        margin-top: 2.5rem;
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--clr-text);
        text-decoration: none;
        border: 1px solid rgba(44, 43, 41, 0.25);
        padding: 0.7rem 1.75rem;
        transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    }

    .nav-mobile-cta:hover {
        background-color: var(--clr-burgundy);
        border-color: var(--clr-burgundy);
        color: var(--clr-bg);
    }
}

/* Prevent underline animation quirk on mobile large links */
@media (max-width: 900px) {
    .nav-link::after {
        transition: none;
    }
}

/* Tablet: logo text can be slightly smaller */
@media (max-width: 600px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .brand-logo-img {
        height: 30px;
        width: 30px;
    }
}

/* Large screens: cap the header inner content width */
@media (min-width: 1600px) {
    .site-header {
        padding-left: max(clamp(1.25rem, 4%, 3.5rem), calc((100vw - 1500px) / 2));
        padding-right: max(clamp(1.25rem, 4%, 3.5rem), calc((100vw - 1500px) / 2));
    }
}


/* ==========================================================================
   Hero Section & Cinematic Slideshow
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    text-align: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1500ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.prev-slide {
    opacity: 1;
    z-index: 1;
}

.hero-slide .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.0);
    transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-image {
    transform: scale(1.06);
}

/* Specific photography framing for hero slides */
.hero-slide:nth-child(1) .hero-image {
    object-position: center 18%;
}

.hero-slide:nth-child(2) .hero-image {
    object-position: center 25%;
}

.hero-slide:nth-child(3) .hero-image {
    object-position: center 22%;
}

.hero-slide:nth-child(4) .hero-image {
    object-position: center 25%;
}

/* Subtle luxury dark overlay for optimal typography contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(
        180deg,
        rgba(29, 27, 26, 0.40) 0%,
        rgba(29, 27, 26, 0.35) 45%,
        rgba(29, 27, 26, 0.65) 100%
    );
    pointer-events: none;
}

/* Mobile & Tablet Responsive Positioning */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        min-height: 600px;
        padding: 0 1.25rem;
    }

    .hero-slide:nth-child(1) .hero-image {
        object-position: 50% 18%;
    }

    .hero-slide:nth-child(2) .hero-image {
        object-position: 50% 22%;
    }

    .hero-slide:nth-child(3) .hero-image {
        object-position: 50% 20%;
    }

    .hero-slide:nth-child(4) .hero-image {
        object-position: 50% 22%;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none !important;
    }
    .hero-slide .hero-image {
        transition: none !important;
        transform: scale(1.0) !important;
    }
    .hero-slide:not(:first-child) {
        display: none !important;
    }
    .hero-slide:first-child {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.hero-content {
    color: var(--clr-bg);
    max-width: 900px;
    margin-top: 5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    font-style: italic;
    font-family: var(--font-heading);
}

.btn-outline-white {
    background: transparent;
    color: var(--clr-bg);
    border: 1px solid rgba(253, 251, 247, 0.5);
}

.btn-outline-white:hover {
    background: var(--clr-bg);
    color: var(--clr-text);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--clr-bg);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.arrow-down {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* ==========================================================================
   Wedding Stories Section (Editorial Layout)
   ========================================================================== */
.stories-section {
    padding: var(--space-xl) 0;
    background-color: var(--clr-bg);
}

.section-number {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    opacity: 0.6;
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--clr-text);
    margin: 1.5rem auto;
    opacity: 0.3;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    opacity: 0.8;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: clamp(1.5rem, 3vw, 3.5rem);
    margin-top: var(--space-lg);
}

.story-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--clr-card);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(29, 27, 26, 0.05);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.story-card:hover {
    box-shadow: 0 18px 48px rgba(29, 27, 26, 0.12);
    transform: translateY(-4px);
}

/* Asymmetrical Grid Positions for 5 cards */
.editorial-item-0 {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}

.editorial-item-1 {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.editorial-item-2 {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

.editorial-item-3 {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
}

.editorial-item-4 {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 27, 26, 0.85) 0%, rgba(28, 27, 26, 0) 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.view-text {
    color: var(--clr-bg);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.story-card:hover .view-text {
    transform: translateY(0);
    opacity: 1;
}

.story-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--clr-bg);
    pointer-events: none;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.story-category {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

.story-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.story-card:hover .story-name {
    transform: translateY(-20px);
}

@media (max-width: 992px) {
    .editorial-item-0 {
        grid-column: 1 / 13;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    .editorial-item-1 {
        grid-column: 1 / 7;
        grid-row: auto;
        aspect-ratio: 1/1;
    }

    .editorial-item-2 {
        grid-column: 7 / 13;
        grid-row: auto;
        aspect-ratio: 1/1;
    }

    .editorial-item-3 {
        grid-column: 1 / 13;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .editorial-item-4 {
        grid-column: 1 / 13;
        grid-row: auto;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 576px) {
    .stories-grid {
        display: flex;
        flex-direction: column;
    }

    .story-card {
        aspect-ratio: 4/5;
    }

    .story-name {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Portfolio / Masonry Section
   ========================================================================== */
.story-gallery-section {
    padding: var(--space-xl) 0;
    background-color: var(--clr-bg);
}

.gallery-header {
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-back-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text);
    cursor: pointer;
    margin-bottom: 3rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.gallery-back-btn:hover {
    opacity: 1;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.gallery-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.75rem;
    opacity: 0.8;
}

.masonry-grid {
    columns: 3 350px;
    column-gap: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 27, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.item-overlay span {
    color: var(--clr-bg);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

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

.masonry-item:hover .item-overlay span {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 2 150px;
        column-gap: 1rem;
    }

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

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 27, 26, 0.95);
    backdrop-filter: blur(5px);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

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

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--clr-accent);
}

/* ==========================================================================
   Animations & Premium Effects
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}



.parallax-img {
    transform: translateY(0) scale(1.05);
    will-change: transform;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background-color: var(--clr-ivory);
    color: var(--clr-text);
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    border-top: 1px solid var(--clr-border-subtle);
    border-bottom: 1px solid var(--clr-border-subtle);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    color: var(--clr-burgundy);
    line-height: 1;
    margin-bottom: 0.35rem;
    font-weight: 400;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   Wedding Films Section — Dark Cinematic Luxury
   ========================================================================== */
.films-section {
    padding: clamp(4.5rem, 8vw, 8.5rem) 0;
    background-color: var(--clr-dark);
    color: var(--clr-ivory);
    position: relative;
    overflow: hidden;
}

.interactive-video-carousel {
    max-width: 1100px;
    margin: 0 auto;
}

.main-video-wrapper {
    margin-bottom: 2.5rem;
}

.main-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #0d0c0c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(247, 243, 238, 0.08);
}

.main-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Premium Video Fallback Card (for non-embeddable videos) */
.video-fallback-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    z-index: 5;
}

.video-fallback-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 12, 12, 0.70) 0%,
        rgba(13, 12, 12, 0.85) 60%,
        rgba(13, 12, 12, 0.95) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.video-fallback-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-fallback-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--clr-gold);
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
}

.video-fallback-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: var(--clr-ivory);
    line-height: 1.2;
    margin: 0;
}

.video-fallback-desc {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: rgba(247, 243, 238, 0.75);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

.btn-yt-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #FF0000;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-yt-watch:hover {
    background-color: #D90000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 0, 0, 0.5);
}

.btn-yt-watch svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Navigation Row */
.video-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.arrow-btn {
    background: transparent;
    border: 1.5px solid rgba(247, 243, 238, 0.25);
    color: var(--clr-ivory);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
}

.arrow-btn:hover {
    background: var(--clr-burgundy);
    border-color: var(--clr-burgundy);
    color: var(--clr-white);
    transform: scale(1.06);
}

.video-counter {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 3px;
    font-weight: 500;
}

.video-subtitle {
    margin-bottom: 3.5rem;
}

.video-subtitle h4 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.video-subtitle p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Thumbnails */
.video-thumbnails-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.thumbnail-card {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    border-radius: 8px;
    background-color: #141312;
}

.thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 11, 10, 0.85) 0%, rgba(12, 11, 10, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.65rem;
    transition: background 0.4s ease;
}

.thumbnail-title {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumbnail-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: all 0.3s ease;
}

.thumbnail-play-icon svg {
    width: 12px;
    height: 12px;
    margin-left: 2px;
}

.thumbnail-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-gold);
}

.thumbnail-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.thumbnail-card:hover .thumbnail-play-icon {
    background-color: var(--clr-burgundy);
    border-color: var(--clr-burgundy);
    transform: translate(-50%, -50%) scale(1.1);
}

.thumbnail-card.active {
    border-color: var(--clr-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.thumbnail-card.active img {
    opacity: 1;
}

.thumbnail-card.active .thumbnail-play-icon {
    display: none;
}

.thumbnail-card::before {
    content: 'PLAYING';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.thumbnail-card.active::before {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .video-thumbnails-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 600px) {
    .video-thumbnails-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .video-nav-row {
        gap: 1.5rem;
    }

    .arrow-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 380px) {
    .video-thumbnails-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   Founder Section (Responsive Editorial)
   ========================================================================== */
.founder-section {
    padding: clamp(4.5rem, 8vw, 8.5rem) 0;
    background-color: var(--clr-beige);
    position: relative;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), 1400px);
    margin: 0 auto;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.founder-image-wrapper::after {
    content: '';
    position: absolute;
    top: clamp(-1rem, -1.8vw, -1.5rem);
    left: clamp(-1rem, -1.8vw, -1.5rem);
    right: clamp(1rem, 1.8vw, 1.5rem);
    bottom: clamp(1rem, 1.8vw, 1.5rem);
    border: 1px solid rgba(91, 23, 34, 0.25);
    border-radius: 14px;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.founder-image-wrapper:hover::after {
    transform: translate(4px, 4px);
}

.founder-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(29, 27, 26, 0.08);
}

.founder-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 620px;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.2vw, 3.5rem);
    color: var(--clr-text);
    margin-bottom: 0.35rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.founder-title {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-burgundy);
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
}

.founder-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--clr-text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image-wrapper {
        max-width: 400px;
    }

    .founder-text {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .founder-image-wrapper {
        max-width: 100%;
    }

    .founder-image-wrapper::after {
        top: -0.6rem;
        left: -0.6rem;
        right: 0.6rem;
        bottom: 0.6rem;
    }
}

/* ==========================================================================
   Best Client Section (Collage & Instagram Card)
   ========================================================================== */
.best-client-section {
    background-color: var(--clr-ivory);
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

.bc-header-section {
    text-align: center;
    padding: clamp(2rem, 5vh, 4rem) 1rem clamp(1.5rem, 4vh, 3rem);
}

.bc-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.85rem);
    font-weight: 400;
    color: var(--clr-text);
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.bc-gallery-section {
    padding: 0 1rem clamp(3rem, 6vw, 5rem);
}

.bc-collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(200px, 35vh));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bc-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    background-color: var(--clr-beige);
    box-shadow: 0 12px 32px rgba(29, 27, 26, 0.04);
}

.bc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

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

.bc-collage-grid .feat-1 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}

.bc-collage-grid .sup-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.bc-collage-grid .sup-2 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.bc-collage-grid .sup-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.bc-collage-grid .sup-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.bc-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 1.5rem auto 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-more-grid.hidden {
    display: none;
    opacity: 0;
}

.bc-action-row {
    margin-top: 3.5rem;
}

/* Instagram Section */
.bc-instagram-section {
    background-color: var(--clr-beige);
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    border-top: 1px solid var(--clr-border-subtle);
}

.bc-ig-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.bc-ig-card {
    background: var(--clr-card);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 16px 40px rgba(29, 27, 26, 0.04);
}

.ig-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--clr-text);
}

.ig-card-title .sub {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-burgundy);
    display: block;
    margin-top: 0.35rem;
}

.ig-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--clr-text-secondary);
    margin-bottom: 1.25rem;
}

.ig-card-handle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-burgundy);
    margin-bottom: 1.75rem;
    letter-spacing: 0.5px;
}

.bc-ig-card .ig-btn {
    width: 100%;
}

.bc-ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.ig-grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ig-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-grid-item:hover img {
    transform: scale(1.06);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(91, 23, 34, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-grid-item:hover .ig-overlay {
    opacity: 1;
}

.ig-overlay svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

@media (max-width: 1100px) {
    .bc-ig-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bc-ig-card {
        max-width: 520px;
        margin: 0 auto;
        text-align: center;
    }

    .bc-ig-card .section-divider.left {
        margin: 0 auto 1.5rem auto;
    }
}

@media (max-width: 900px) {
    .bc-collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bc-collage-grid .feat-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 4/3;
    }

    .bc-collage-grid .sup-1,
    .bc-collage-grid .sup-2,
    .bc-collage-grid .sup-3,
    .bc-collage-grid .sup-4 {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .bc-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ig-grid-item:nth-child(8) {
        display: none;
    }
}

@media (max-width: 600px) {
    .bc-collage-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bc-collage-grid .feat-1 {
        grid-column: 1 / 2;
        aspect-ratio: auto;
        height: 50vh;
    }

    .bc-more-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bc-more-grid .bc-img-wrapper {
        aspect-ratio: auto;
        height: 45vh;
    }

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

    .ig-grid-item:nth-child(8) {
        display: block;
    }
}

/* ==========================================================================
   Awards Section (Editorial Photographic Cards)
   ========================================================================== */
.awards-section {
    padding: clamp(4.5rem, 8vw, 8.5rem) 0;
    background-color: var(--clr-beige);
    color: var(--clr-text);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    max-width: 1240px;
    margin: 0 auto;
    align-items: stretch;
}

.award-card {
    background-color: var(--clr-card);
    border: 1px solid rgba(91, 23, 34, 0.10);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(29, 27, 26, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.45s ease-out, box-shadow 0.45s ease-out, border-color 0.45s ease-out;
}

.award-card.reveal.active:hover,
.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(91, 23, 34, 0.12);
    border-color: rgba(91, 23, 34, 0.25);
}

.award-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--clr-beige);
    flex-shrink: 0;
}

.award-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-out;
}

.award-card:hover .award-img {
    transform: scale(1.04);
}

/* Individual object-position for optimal subject and trophy visibility */
.award-card:nth-child(1) .award-img {
    object-position: center 20%;
}

.award-card:nth-child(2) .award-img {
    object-position: center 15%;
}

.award-card:nth-child(3) .award-img {
    object-position: center 20%;
}

.award-content {
    padding: clamp(1.5rem, 2.2vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.award-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    color: var(--clr-burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.award-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
    color: var(--clr-text);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.award-issuer {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-secondary);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 2rem;
    }

    .award-card:nth-child(3):last-child {
        grid-column: 1 / -1;
        max-width: 390px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .awards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 1.75rem;
        margin: 0 auto;
    }

    .award-card:nth-child(3):last-child {
        max-width: 100%;
        margin: 0;
    }
}

/* ==========================================================================
   Testimonials / Client Words Section (Luxury Editorial Cards & Carousel)
   ========================================================================== */
.testimonials-section {
    padding: clamp(4.5rem, 8vw, 8.5rem) 0;
    background-color: var(--clr-ivory);
    position: relative;
    overflow: hidden;
}

.testimonial-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: calc(50% - 1rem);
    flex-shrink: 0;
    background-color: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(29, 27, 26, 0.04);
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 2.75rem);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-sizing: border-box;
}

.testimonial-card.active {
    border-color: rgba(91, 23, 34, 0.25);
    box-shadow: 0 20px 48px rgba(91, 23, 34, 0.07);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.8;
    color: var(--clr-burgundy);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.6vw, 1.45rem);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 2rem;
    color: var(--clr-text);
    flex-grow: 1;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.reviewer-line {
    width: 24px;
    height: 1px;
    background-color: var(--clr-burgundy);
    opacity: 0.6;
}

.reviewer-name {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--clr-burgundy);
    font-weight: 600;
}

.testimonial-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.circle-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-burgundy);
    background: transparent;
    color: var(--clr-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.circle-nav-btn svg {
    width: 20px;
    height: 20px;
}

.circle-nav-btn:hover {
    background: var(--clr-burgundy);
    color: var(--clr-white);
    transform: scale(1.06);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(91, 23, 34, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--clr-burgundy);
    width: 24px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .testimonial-card {
        min-width: 100%;
    }
}

/* YouTube Lightbox Iframe */
.lightbox-iframe {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.lightbox.active .lightbox-iframe {
    transform: scale(1);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: clamp(4.5rem, 8vw, 8.5rem) 0;
    background-color: var(--clr-beige);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--clr-text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-link {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--clr-text);
    transition: color 0.3s ease;
}

.contact-link span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.contact-link:hover {
    color: var(--clr-burgundy);
}

.contact-form-container {
    width: 100%;
}

.bespoke-form {
    background-color: var(--clr-card);
    padding: clamp(2rem, 4vw, 3.25rem);
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 16px 40px rgba(29, 27, 26, 0.04);
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    color: var(--clr-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(29, 27, 26, 0.15);
    background-color: var(--clr-card-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-burgundy);
    box-shadow: 0 0 0 3px rgba(91, 23, 34, 0.1);
}

.bespoke-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer (Luxury Charcoal & Gold)
   ========================================================================== */
.site-footer {
    background-color: var(--clr-dark);
    color: var(--clr-ivory);
    padding: clamp(4rem, 7vw, 6.5rem) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 320px;
}

.footer-brand {
    margin-bottom: 1.5rem;
    display: block;
    line-height: 0;
}

.footer-logo-img {
    width: auto;
    max-width: 130px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo-img {
    transform: translateY(-2px);
}

.footer-contact-item {
    margin-bottom: 1.25rem;
    text-align: left;
    width: 100%;
}

.footer-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold);
    margin-bottom: 0.35rem;
}

.footer-contact-item p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(247, 243, 238, 0.8);
    margin: 0;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--clr-gold);
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: 0.75rem;
}

.social-icons a {
    color: var(--clr-ivory);
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--clr-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--clr-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    color: rgba(247, 243, 238, 0.8);
    line-height: 1.5;
}

.footer-list a {
    color: rgba(247, 243, 238, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--clr-gold);
    transform: translateX(4px);
}

.footer-bottom {
    background-color: #121110;
    border-top: 1px solid rgba(247, 243, 238, 0.06);
    padding: 1.75rem 0;
    text-align: center;
    color: rgba(247, 243, 238, 0.5);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .site-footer {
        padding-top: 3.5rem;
    }
}

/* Lightbox Navigation Buttons */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(29, 27, 26, 0.6);
    color: white;
    border: none;
    font-size: 3rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    line-height: 1;
    padding-bottom: 6px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--clr-burgundy);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 600px) {
    .lightbox-prev {
        left: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox-next {
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* ==========================================================================
   Trusted By Customers Section
   ========================================================================== */
.trusted-customers-section {
    background-color: #EFE5DD; /* Warm Beige */
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.tc-header {
    margin-bottom: 80px;
}

.tc-heading {
    font-family: 'Cormorant Garamond', serif;
    color: #5B1722;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.tc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.tc-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease;
}

@media (min-width: 1024px) {
    .tc-card-wrapper:hover {
        transform: translateY(-5px);
    }
    
    .tc-card-wrapper:hover .tc-portrait {
        transform: scale(1.03);
    }
}

.tc-portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F7F3EE;
    box-shadow: 0 10px 25px rgba(29,27,26,0.10);
    position: absolute;
    top: 0;
    z-index: 2;
    transition: transform 0.35s ease;
}

.tc-card {
    background-color: #DCC8C1;
    border-radius: 18px;
    padding: 90px 30px 32px;
    margin-top: 75px; /* Half of portrait height */
    box-shadow: 0 12px 30px rgba(29,27,26,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.tc-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(91,23,34,0.25);
    margin-bottom: -20px;
    margin-top: -20px;
}

.tc-text {
    font-family: 'Inter', sans-serif;
    color: #756B66;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
    flex-grow: 1;
}

@media (min-width: 1024px) {
    .tc-text {
        font-size: 20px;
    }
}

.tc-name {
    font-family: 'Inter', sans-serif;
    color: #5B1722;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
    .tc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-card-wrapper:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tc-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .tc-card-wrapper:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}