/* ============================================
   Bharti Verma Films - Custom CSS
   Premium, Minimalist, Luxury Portfolio
   ============================================ */

/* ===== Root Variables ===== */
:root {
    --primary-gold: #B8921F;
    --secondary-gold: #C9A227;
    --light-gold: #E4C96A;
    --charcoal: #111111;
    --dark-gray: #1F1F1F;
    --medium-gray: #3D3D3D;
    --light-gray: #6B6B6B;
    --white: #FFFFFF;
    --beige: #F5F1E6;
    --light-beige: #F8F5ED;
    --accent-crimson: #B83245;
    --accent-teal: #177A6B;
    --accent-amber: #C8871A;
    --navy: #0A1018;
    --deep-burgundy: #3A1520;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
    
    --border-radius: 16px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 12px 40px rgba(14, 22, 36, 0.08);
    --shadow-gold: 0 12px 40px rgba(184, 146, 31, 0.22);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: clip;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Helper Classes ===== */
.gold-text {
    color: var(--primary-gold) !important;
}

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

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #8F7012;
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, rgba(184, 146, 31, 0.16), rgba(184, 50, 69, 0.06));
    border-radius: 999px;
    border: 1px solid rgba(143, 112, 18, 0.35);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

.section-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* ===== Buttons ===== */
.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-color: transparent;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

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

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 1.5px solid var(--primary-gold);
    padding: 10px 22px;
    font-size: 0.8125rem;
    border-radius: 999px;
    gap: 0.5rem;
}

.btn-gold-outline:hover {
    background: var(--primary-gold);
    color: #050505;
}

.btn-gold-outline i {
    font-size: 0.7rem;
}

.header-cta {
    white-space: nowrap;
}

.btn-link {
    color: var(--primary-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--secondary-gold);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: padding 0.3s ease, background-color 0.3s ease;
    padding: 1.35rem 0;
    background: transparent;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(14, 22, 36, 0.08);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 0.85rem 0;
}

.header.scrolled .navbar > .container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    max-width: 1140px;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    line-height: 1;
}

.site-brand-lockup {
    gap: 0.75rem;
    max-width: min(100%, 360px);
}

.site-falcon-logo,
.site-production-logo {
    height: 42px;
    width: auto;
    max-width: 108px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.site-brand-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-lockup-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.header.scrolled .brand-lockup-divider {
    background: rgba(26, 26, 26, 0.16);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-bv {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-divider {
    display: none;
    width: 1px;
    height: 28px;
    background: rgba(26, 26, 26, 0.18);
    flex-shrink: 0;
}

.brand-stack {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header.scrolled .brand-bv {
    color: #1a1a1a;
    font-size: 1.7rem;
}

.header.scrolled .brand-divider {
    display: inline-block;
}

.header.scrolled .brand-name {
    color: #1a1a1a;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.header.scrolled .navbar-brand {
    color: #1a1a1a;
}

.logo-text {
    color: var(--primary-gold);
    font-weight: 800;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.header.scrolled .logo-sub {
    color: #8F7012;
    font-size: 0.58rem;
    letter-spacing: 2.8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.header.scrolled .nav-link {
    color: #2a2a2a !important;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.55rem 0.75rem !important;
}

.header.scrolled .navbar-nav .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid rgba(26, 26, 26, 0.08);
}

.header.scrolled .nav-link.active {
    color: #8F7012 !important;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 55%;
}

.header.scrolled .nav-link:hover {
    color: #8F7012 !important;
}

.header.scrolled .header-cta {
    padding: 0.6rem 1.15rem;
    font-size: 0.78rem;
    border-width: 1.5px;
    gap: 0.5rem;
}

.header.scrolled .header-cta i:first-child {
    font-size: 0.78rem;
}

.header.scrolled .navbar-toggler {
    background: rgba(26, 26, 26, 0.05);
    border-color: rgba(26, 26, 26, 0.1);
}

.header.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

.navbar-toggler {
    border: none;
    padding: 0.35rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid rgba(201, 162, 39, 0.45);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    filter: invert(1);
    width: 1.35rem;
    height: 1.35rem;
}

body.nav-open {
    overflow: hidden;
}

.site-logo-img {
    max-height: 48px;
    width: auto;
}

@media (max-width: 991.98px) {
    .site-logo-img {
        max-height: 40px;
    }
}


.mobile-menu-head {
    display: none;
}

@media (min-width: 992px) {
    .navbar .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-collapse {
        background: transparent;
        padding: 0;
        align-items: center;
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        height: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        overflow: visible;
    }

    .navbar-nav {
        align-items: center;
        gap: 0.25rem;
        flex-direction: row;
    }

    .navbar-nav .nav-item {
        border-bottom: none;
        width: auto;
    }

    .nav-link {
        display: inline-block !important;
        gap: 0;
        border-radius: 0;
    }

    .btn-gold-outline {
        flex-shrink: 0;
        white-space: nowrap;
        margin-left: 1rem;
        width: auto;
        border-radius: 999px;
    }

    .navbar-toggler {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.5rem !important;
    }

    .btn-gold-outline {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 991.98px) {
    .header {
        padding: 0.65rem 0;
    }

    .page-home .header:not(.scrolled) {
        background: rgba(10, 14, 22, 0.72);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .header.scrolled {
        padding: 0.7rem 0;
        background: #ffffff;
    }

    .header.scrolled .navbar > .container,
    .page-inner .header .navbar > .container {
        border-radius: 0;
        padding: 0.45rem 0.85rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .header.scrolled .brand-divider {
        height: 22px;
    }

    .header.scrolled .brand-bv {
        font-size: 1.35rem;
    }

    .header .navbar > .container {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }

    .navbar-brand {
        font-size: 1.05rem;
        margin-right: 0;
        flex: 0 1 auto;
        min-width: 0;
        z-index: 1002;
    }

    .site-falcon-logo,
    .site-production-logo {
        height: 34px;
        max-width: 82px;
    }

    .site-brand-logo {
        height: 32px;
        max-width: 110px;
    }

    .brand-lockup-divider {
        height: 28px;
    }

    .brand-bv {
        font-size: 1.45rem;
    }

    .brand-name {
        font-size: 0.65rem;
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-text {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 72vw;
    }

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

    .navbar-toggler {
        display: inline-flex !important;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }

    .navbar-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(10, 12, 18, 0.55);
        backdrop-filter: blur(3px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: block;
    }

    body.nav-open .navbar-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 90vw);
        height: 100vh;
        height: 100dvh;
        background: #f7f5f0;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1001;
        padding: 1.1rem 1rem 1.5rem;
        box-shadow: -16px 0 40px rgba(20, 24, 32, 0.12);
        overflow-y: auto;
        transform: translateX(105%);
        display: flex !important;
        flex-direction: column;
        visibility: visible;
        border-left: 1px solid rgba(26, 26, 26, 0.05);
        border-radius: 18px 0 0 18px;
    }

    .navbar-collapse.collapsing {
        transition: none;
        height: 100vh !important;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.85rem;
        padding: 0.15rem 0.25rem 0.85rem;
        border-bottom: none;
        color: var(--primary-gold);
    }

    .mobile-menu-brand {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
    }

    .mobile-menu-mark {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--primary-gold);
        line-height: 1;
    }

    .mobile-menu-label {
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 2.2px;
        text-transform: uppercase;
        color: var(--primary-gold);
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 12px;
        background: #fff;
        color: #4a4a4a;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(20, 24, 32, 0.08);
    }

    .mobile-menu-close:hover {
        color: var(--primary-gold);
        box-shadow: 0 6px 16px rgba(201, 162, 39, 0.18);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.2rem;
        margin: 0 !important;
        width: 100%;
        flex: 1 1 auto;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        padding: 0.7rem 0.65rem !important;
        font-size: 0.95rem;
        font-weight: 500;
        color: #3a3a3a !important;
        border-bottom: none !important;
        border-radius: 12px;
        text-decoration: none;
    }

    .nav-link-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: #fff;
        color: #555;
        font-size: 0.8rem;
        box-shadow: 0 2px 8px rgba(20, 24, 32, 0.06);
        border: 1px solid rgba(26, 26, 26, 0.05);
    }

    .nav-link-text {
        flex: 1 1 auto;
        text-align: left;
    }

    .nav-link-chevron {
        color: #b0b0b0;
        font-size: 0.65rem;
        flex-shrink: 0;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link:hover {
        background: rgba(201, 162, 39, 0.08);
        color: var(--primary-gold) !important;
    }

    .nav-link:hover .nav-link-icon {
        color: var(--primary-gold);
        border-color: rgba(201, 162, 39, 0.25);
    }

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

    .nav-link.active {
        background: linear-gradient(135deg, rgba(232, 206, 120, 0.45), rgba(201, 162, 39, 0.22));
        color: #8a6d12 !important;
        font-weight: 600;
        box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.18);
    }

    .nav-link.active .nav-link-icon {
        background: linear-gradient(145deg, var(--secondary-gold), var(--primary-gold));
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
    }

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

    .header.scrolled .nav-link,
    .page-inner .nav-link,
    .page-home .nav-link {
        color: #3a3a3a !important;
    }

    .header.scrolled .nav-link.active,
    .page-inner .nav-link.active,
    .page-home .nav-link.active,
    .header.scrolled .nav-link:hover,
    .page-inner .nav-link:hover,
    .page-home .nav-link:hover {
        color: #8a6d12 !important;
    }

    .header.scrolled .navbar-nav .nav-item:not(:last-child) .nav-link {
        border-right: none;
    }

    .btn-gold-outline.header-cta {
        margin-top: 1.1rem;
        width: 100%;
        justify-content: center;
        gap: 0.55rem;
        color: var(--primary-gold) !important;
        border: 1.5px solid var(--primary-gold);
        background: transparent;
        border-radius: 999px;
        padding: 0.7rem 1rem;
        font-size: 0.88rem;
        font-weight: 600;
        box-shadow: none;
    }

    .btn-gold-outline.header-cta:hover {
        background: var(--primary-gold);
        color: #111 !important;
    }

    .mobile-menu-footer {
        margin-top: auto;
        padding-top: 0.35rem;
    }

    .mobile-menu-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin: 1rem 0 1.1rem;
        color: var(--primary-gold);
        font-size: 0.55rem;
    }

    .mobile-menu-divider::before,
    .mobile-menu-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(201, 162, 39, 0.28);
    }

    .mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .mobile-social-link {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #555;
        background: #fff;
        border: none;
        font-size: 0.95rem;
        transition: var(--transition);
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(20, 24, 32, 0.08);
    }

    .mobile-social-link:hover {
        color: #0a0c10;
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(201, 162, 39, 0.28);
    }

    body.nav-open .navbar-toggler {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 0.88rem;
        max-width: 58vw;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }
}


/* ===== Inner Page Banner ===== */
.page-inner .header,
.page-inner .header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(14, 22, 36, 0.08);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 0.85rem 0;
}

.page-inner .header .navbar > .container,
.page-inner .header.scrolled .navbar > .container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.page-banner {
    position: relative;
    padding: 6.25rem 0 1.75rem;
    background: linear-gradient(145deg, #0e1624 0%, #1a1a1a 45%, #2a2218 100%);
    overflow: hidden;
    text-align: center;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 162, 39, 0.14), transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(196, 59, 78, 0.08), transparent 40%);
    pointer-events: none;
}

.page-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.page-banner .section-subtitle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 162, 39, 0.45);
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    padding: 0.28rem 0.75rem;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.45rem;
    line-height: 1.2;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.55;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 500;
}

.page-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: var(--secondary-gold);
}

.page-section {
    min-height: 0;
}

.page-section.about-section,
.page-section.contact-section {
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
}

.page-contact-alert {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}
/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: #050505;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #050505;
}

.hero-film-grain {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.social-sidebar {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 10;
}

.social-sidebar-link {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-sidebar-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #050505;
    transform: translateX(4px);
}

.hero-social-mobile {
    display: none;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
    padding-left: 5rem;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 740px;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 1rem 0 2rem;
    text-align: left;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 1.35rem;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
}

.hero-eyebrow::before {
    display: none;
}

.hero-eyebrow i {
    font-size: 0.7rem;
    color: var(--primary-gold);
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-title .gold-text {
    color: var(--primary-gold) !important;
    background: none;
    -webkit-text-fill-color: var(--primary-gold);
    background-clip: unset;
    -webkit-background-clip: unset;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    max-width: 540px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(201, 162, 39, 0.65);
    padding: 14px 28px;
    font-weight: 500;
}

.btn-hero-outline:hover {
    background: rgba(201, 162, 39, 0.12);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-gold {
    color: #0a0a0a;
    font-weight: 600;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    max-width: 920px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.35rem 1.4rem 0.5rem 0;
    border-right: 1px solid rgba(201, 162, 39, 0.18);
}

.hero-feature:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-feature:not(:first-child) {
    padding-left: 1.4rem;
}

.hero-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.hero-feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.25rem;
}

.hero-feature p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
}

@media (max-width: 1199.98px) {
    .hero-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .social-sidebar {
        left: 14px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        text-align: left;
    }

    .hero-container {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-content {
        padding: 0.5rem 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        margin-top: 1.75rem;
        max-width: 100%;
    }

    .hero-feature {
        border-right: none;
        border-bottom: 1px solid rgba(201, 162, 39, 0.15);
        padding: 1rem 0;
    }

    .hero-feature:not(:first-child) {
        padding-left: 0;
    }

    .hero-feature:last-child {
        border-bottom: none;
    }

    .hero-social-mobile {
        display: flex;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .brand-bv {
        font-size: 1.55rem;
    }

    .brand-name {
        font-size: 0.68rem;
    }
}

/* ===== Experience Counters ===== */
.experience-section {
    position: relative;
    z-index: 10;
    margin-top: -32px;
    padding-bottom: 2rem;
}

.counters-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fffdf8 100%);
    border-radius: 16px;
    padding: 1.35rem 1rem;
    box-shadow: 0 14px 36px rgba(14, 22, 36, 0.09);
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.counter-card {
    text-align: center;
    padding: 0.65rem 0.5rem;
}

.counter-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55rem;
}

.counter-icon-wrap .counter-icon {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: var(--white);
}

.accent-amber { background: linear-gradient(135deg, #E09B2D, #C9A227); }
.accent-crimson { background: linear-gradient(135deg, #C43B4E, #9e2a3a); }
.accent-teal { background: linear-gradient(135deg, #1F8A7A, #156b5e); }
.accent-gold { background: linear-gradient(135deg, #D4AF37, #C9A227); }

.counter-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.counter-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
    line-height: 1.1;
    background: linear-gradient(120deg, var(--charcoal), #3d2e12);
    -webkit-background-clip: text;
    background-clip: text;
}

.counter-card p {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .experience-section {
        margin-top: -28px;
        padding-bottom: 1.5rem;
    }

    .counters-wrapper {
        padding: 1rem 0.5rem;
        border-radius: 14px;
    }

    .counter-card {
        padding: 0.55rem 0.35rem;
    }

    .counter-icon-wrap {
        width: 38px;
        height: 38px;
        margin-bottom: 0.4rem;
    }

    .counter-card h3 {
        font-size: 1.55rem;
    }

    .counter-card p {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .about-visual {
        min-height: 260px;
        margin-bottom: 0;
    }

    .experience-badge {
        width: 118px;
        min-height: 168px;
        padding: 1.15rem 0.9rem;
    }

    .badge-number {
        font-size: 2rem;
    }
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f3 50%, #ffffff 100%);
    padding: 3.75rem 0;
    overflow: hidden;
}

.about-row {
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.75rem;
}

.about-visual-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 28%, rgba(201, 162, 39, 0.22) 0%, transparent 28%),
        radial-gradient(circle at 68% 62%, rgba(201, 162, 39, 0.14) 0%, transparent 32%),
        radial-gradient(circle at 48% 78%, rgba(196, 59, 78, 0.06) 0%, transparent 40%),
        linear-gradient(165deg, #fbf9f4 0%, #ffffff 55%, #f7f4ec 100%);
    border-radius: 22px;
}

.about-filmstrip {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 22px;
}

/* Curved film strip */
.about-filmstrip::before {
    content: '';
    position: absolute;
    left: -8%;
    bottom: 6%;
    width: 118%;
    height: 56px;
    opacity: 0.28;
    background:
        repeating-linear-gradient(
            90deg,
            #c4b48a 0 10px,
            transparent 10px 16px,
            #c4b48a 16px 26px,
            transparent 26px 32px
        ),
        linear-gradient(180deg, #d8cba8 0%, #c9b78a 100%);
    background-size: 48px 100%, 100% 100%;
    border-radius: 50% 50% 40% 40% / 100% 100% 30% 30%;
    transform: rotate(-8deg);
    box-shadow: inset 0 0 0 1px rgba(160, 140, 90, 0.25);
}

/* Clapperboard silhouette */
.about-filmstrip::after {
    content: '';
    position: absolute;
    top: 12%;
    left: 10%;
    width: 96px;
    height: 64px;
    opacity: 0.22;
    background:
        repeating-linear-gradient(
            -18deg,
            #1a1a1a 0 10px,
            #f5f0e6 10px 20px
        );
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.08);
}

.about-portrait {
    position: relative;
    z-index: 1;
    max-width: 220px;
    width: 65%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.2);
    opacity: 0.92;
}

/* Full composite About graphic (badge baked into PNG) */
.about-visual--composite {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: transparent;
    box-shadow: none;
}

.about-visual--composite .about-portrait {
    max-width: 100%;
    width: 100%;
    opacity: 1;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(26, 26, 26, 0.1);
}

.experience-badge {
    position: relative;
    z-index: 2;
    width: 132px;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(168deg, #a83242 0%, #8b2232 42%, #6e1a26 100%);
    color: var(--white);
    padding: 1.35rem 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    box-shadow:
        0 18px 40px rgba(110, 26, 38, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.about-visual:has(.about-portrait) .experience-badge {
    position: absolute;
    right: 8%;
    bottom: 10%;
    left: auto;
}

.badge-wreath {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.badge-wreath::before,
.badge-wreath::after {
    content: '';
    position: absolute;
    top: 4px;
    width: 18px;
    height: 34px;
    border: 1.5px solid rgba(212, 175, 55, 0.75);
    border-radius: 50%;
}

.badge-wreath::before {
    left: 2px;
    border-right-color: transparent;
    transform: rotate(-18deg);
}

.badge-wreath::after {
    right: 2px;
    border-left-color: transparent;
    transform: rotate(18deg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.92);
}

.about-content {
    padding-right: 0.5rem;
    padding-left: 0;
}

.about-content .section-subtitle {
    margin-bottom: 0.65rem;
    background: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.55);
    color: var(--primary-gold);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.08);
}

.about-content .section-title {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 0.95rem;
    max-width: 160px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.2), var(--primary-gold), rgba(201, 162, 39, 0.2));
    position: relative;
}

.about-divider span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.about-text {
    color: var(--medium-gray);
    margin-bottom: 0.65rem;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-text:last-of-type {
    margin-bottom: 1rem;
}

.about-highlight {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin: 1.15rem 0 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(201, 162, 39, 0.22);
}

.about-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.28);
}

.about-highlight h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 0.35rem;
    color: var(--charcoal);
}

.about-highlight p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--medium-gray);
    font-weight: 500;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0.35rem 0 1.35rem;
}

.about-focus-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 4px 12px rgba(20, 24, 32, 0.04);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.about-focus-item i {
    color: var(--primary-gold);
    font-size: 0.9rem;
    width: 1.1rem;
    text-align: center;
}

.about-page-section .about-visual--portrait {
    position: sticky;
    top: 96px;
}

.about-page-section .about-portrait {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
}

@media (max-width: 991.98px) {
    .about-page-section .about-visual--portrait {
        position: static;
    }

    .about-focus-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .about-focus-grid {
        grid-template-columns: 1fr;
    }

    .about-highlight {
        flex-direction: column;
        gap: 0.65rem;
    }
}

.mission-vision {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.mv-item {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
    transition: var(--transition);
}

.mv-mission {
    background: linear-gradient(135deg, #faf6ec, #f7f1e2);
    border-color: rgba(201, 162, 39, 0.15);
}

.mv-vision {
    background: linear-gradient(135deg, #f0f5f4, #e8f0ee);
    border-color: rgba(31, 138, 122, 0.12);
}

.mv-item:hover {
    transform: translateX(3px);
    box-shadow: 0 10px 22px rgba(26, 26, 26, 0.07);
}

.mv-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-amber));
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(201, 162, 39, 0.28);
}

.mv-vision .mv-icon {
    background: linear-gradient(135deg, #1f6b5c, #154a40);
    box-shadow: 0 6px 14px rgba(21, 74, 64, 0.28);
}

.mv-item h4 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--charcoal);
}

.mv-item p {
    color: var(--medium-gray);
    margin: 0;
    font-weight: 500;
    line-height: 1.55;
    font-size: 0.86rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.15rem;
}

.about-actions .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
}

/* ===== Featured Films Section ===== */
.films-section {
    padding: 3.25rem 0 3.5rem;
    background:
        linear-gradient(180deg, #f7f5ef 0%, #faf8f2 45%, #f3f0e8 100%);
}

.films-section--page {
    padding-top: 1.25rem;
    background: transparent;
}

.films-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.films-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #8a6d12;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.28);
    margin-bottom: 0.75rem;
}

.films-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.4rem;
    line-height: 1.15;
}

.films-title span {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.films-lead {
    margin: 0 0 0.65rem;
    color: #8a8a8a;
    font-size: 0.9rem;
}

.films-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.55);
    padding-bottom: 0.1rem;
}

.films-all-link:hover {
    color: #a8841a;
}

.films-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--medium-gray);
    margin: 0;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.film-card {
    background: transparent;
    border: none;
    border-radius: 14px;
    overflow: visible;
    box-shadow: none;
}

.film-card-link {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    text-align: left;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    cursor: pointer;
    font: inherit;
}

.film-card-link:disabled {
    cursor: default;
}

.film-card-link:disabled .film-poster {
    opacity: 0.95;
}

.film-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    width: 100%;
    min-height: 180px;
    height: auto;
    max-height: none;
    border-radius: 14px;
    background: #1a1610;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 8px 24px rgba(20, 24, 32, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.film-card:hover .film-poster {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(20, 24, 32, 0.12);
}

.film-poster img,
.film-poster-img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center center;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.5s ease;
}

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

.film-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.95);
    color: #111;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    z-index: 3;
    pointer-events: none;
}

.film-card-link.has-video .film-play {
    opacity: 1;
}

.film-card:hover .film-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
}

.film-video-badge {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 3;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.film-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 0.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 55%, transparent 100%);
}

.film-card-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    max-width: 65%;
}

.film-category {
    position: static;
    flex-shrink: 0;
    background: linear-gradient(135deg, #c43b4e, #9e2a3a);
    color: #fff;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(196, 59, 78, 0.28);
}

.film-card-meta {
    position: absolute;
    left: 0.8rem;
    bottom: 0.75rem;
    z-index: 2;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(10, 12, 16, 0.45);
    backdrop-filter: blur(4px);
}

@media (max-width: 991.98px) {
    .films-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .film-card-title {
        font-size: 0.72rem;
        max-width: 58%;
    }

    .film-category {
        font-size: 0.52rem;
        padding: 0.22rem 0.4rem;
    }
}

@media (max-width: 575.98px) {
    .films-section {
        padding: 2.5rem 0 2.75rem;
    }

    .films-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        max-width: 420px;
        margin: 0 auto;
    }

    .film-poster {
        aspect-ratio: 16 / 10;
        max-height: 210px;
    }

    .film-play {
        opacity: 1;
    }
}

/* ===== Showreel Section ===== */
.showreel-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #0e1624 0%, #1a1220 100%);
    color: var(--white);
}

.showreel-section .section-subtitle {
    color: var(--light-gold);
}

.showreel-section .section-title {
    color: var(--white);
}

.showreel-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.showreel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== Reels grid (4 videos) ===== */
.reels-grid,
.reels-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.reel-card {
    margin: 0;
    width: 100%;
    min-width: 0;
}

@media (max-width: 991px) {
    .reels-grid,
    .reels-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .reels-grid,
    .reels-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.5rem !important;
        max-width: 100% !important;
    }

    .reel-card-media,
    .reel-card-landscape .reel-card-media {
        aspect-ratio: 3 / 4 !important;
        border-radius: 10px;
    }

    .reel-card-play {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .reel-card-title {
        font-size: 0.7rem;
    }

    .reel-card-meta {
        font-size: 0.58rem;
    }
}

.reel-card-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.reel-card-media {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.28);
    background: #141414;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    aspect-ratio: 9 / 16;
}

.reel-card-landscape .reel-card-media {
    aspect-ratio: 16 / 9;
}

.reel-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.reel-card-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.25), transparent 50%),
        linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 55%, #1c1520 100%);
    color: rgba(201, 162, 39, 0.85);
    font-size: 2.4rem;
}

.reel-card-instagram .reel-card-fallback {
    background:
        radial-gradient(circle at 70% 30%, rgba(225, 48, 108, 0.35), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(131, 58, 180, 0.3), transparent 40%),
        linear-gradient(160deg, #1a1a1a 0%, #121212 100%);
    color: #fff;
}

.reel-card-youtube .reel-card-fallback {
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 0, 0, 0.22), transparent 50%),
        linear-gradient(160deg, #1a1a1a 0%, #121212 100%);
}

.reel-card-trigger:hover .reel-card-media img {
    transform: scale(1.05);
}

.reel-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-gold), #b8921f);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4);
    transition: transform 0.25s ease;
}

.reel-card-trigger:hover .reel-card-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.reel-card-platform {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.reel-card-badge {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.95);
    color: #111;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.reel-card-media img {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
}

.reel-card-info {
    display: block;
    padding: 0.75rem 0.15rem 0.2rem;
}

.reel-card-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-card-meta {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Reel play modal */
.reel-modal[hidden] {
    display: none !important;
}

.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.reel-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(6px);
}

.reel-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    background: #121212;
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.reel-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.reel-modal-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-gold);
    padding-right: 2.5rem;
}

.reel-modal-frame {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.reel-modal-frame-landscape {
    aspect-ratio: 16 / 9;
}

.reel-modal-frame-portrait {
    aspect-ratio: 9 / 16;
    max-width: 380px;
    margin: 0 auto;
}

.reel-modal-frame-instagram {
    max-width: 420px;
    min-height: 520px;
    aspect-ratio: auto;
    height: min(72vh, 640px);
}

.reel-modal-frame-instagram-fallback {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: auto;
    height: auto;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reel-modal-frame-preview {
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0;
    position: relative;
    background: transparent !important;
    overflow: visible;
}

.reel-phone {
    position: relative;
    width: min(100%, 300px);
    margin: 0 auto;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(160deg, #2a2a2a, #111);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reel-phone-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
}

.reel-preview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.reel-phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 10px;
    border-radius: 999px;
    background: #0a0a0a;
    z-index: 3;
}

.reel-preview-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(225, 48, 108, 0.35), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(131, 58, 180, 0.3), transparent 40%),
        #141414;
    color: #fff;
    font-size: 3rem;
}

.reel-preview-bars {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 4;
    display: flex;
    gap: 4px;
}

.reel-preview-bars span {
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.reel-preview-bars span:first-child {
    background: rgba(255, 255, 255, 0.9);
}

.reel-preview-top {
    position: absolute;
    top: 22px;
    left: 12px;
    right: 12px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.reel-preview-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.reel-preview-user {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.reel-preview-user strong {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.reel-preview-user small {
    font-size: 0.65rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-preview-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, transparent 55%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.reel-preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.reel-preview-side {
    position: absolute;
    right: 10px;
    bottom: 78px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: #fff;
    font-size: 1.15rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.reel-preview-caption {
    position: absolute;
    left: 12px;
    right: 52px;
    bottom: 14px;
    z-index: 3;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.reel-preview-tag {
    display: inline-block;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.9);
    color: #111;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 0.35rem;
}

.reel-preview-caption p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-ig-fallback {
    text-align: center;
    padding: 2rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.reel-ig-fallback i.fab {
    font-size: 2.5rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reel-ig-fallback p {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
}

.reel-ig-hint {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-bottom: 1.1rem !important;
}

.reel-ig-wrap,
.reel-ig-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.reel-modal-frame iframe,
.reel-modal-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

.reel-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.95rem;
    flex-wrap: wrap;
}

.reel-modal-external {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.reel-modal-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

body.reel-modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .showreel-section .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        max-width: 100%;
        width: 100%;
    }

    .reel-card-media {
        aspect-ratio: 3 / 4;
        border-radius: 10px;
    }

    .reel-card-landscape .reel-card-media {
        aspect-ratio: 3 / 4;
    }

    .reel-card-play {
        width: 34px;
        height: 34px;
        font-size: 0.65rem;
    }

    .reel-card-platform {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: 0.45rem;
        left: 0.45rem;
        border-radius: 6px;
    }

    .reel-card-badge {
        top: 0.45rem;
        right: 0.45rem;
        padding: 0.12rem 0.35rem;
        font-size: 0.55rem;
    }

    .reel-card-info {
        padding: 0.45rem 0.05rem 0;
    }

    .reel-card-title {
        font-size: 0.72rem;
        margin-bottom: 0.1rem;
    }

    .reel-card-meta {
        font-size: 0.6rem;
        letter-spacing: 0.4px;
    }

    .reel-modal-frame-instagram {
        height: min(68vh, 560px);
        max-width: 100%;
    }

    .reel-modal-frame-preview {
        max-width: min(100%, 280px);
    }
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.75rem;
    transition: var(--transition);
    box-shadow: 0 0 0 12px rgba(201, 162, 39, 0.2), 0 15px 40px rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 18px rgba(201, 162, 39, 0.25), 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ===== Quote Section ===== */
.quote-section {
    background:
        linear-gradient(135deg, rgba(196, 59, 78, 0.92), rgba(158, 42, 58, 0.95)),
        var(--accent-crimson);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== Awards Section ===== */
.awards-section {
    position: relative;
    overflow: hidden;
    padding: 4.25rem 0 4rem;
    background:
        radial-gradient(ellipse 55% 45% at 8% 55%, rgba(201, 162, 39, 0.09) 0%, transparent 58%),
        radial-gradient(ellipse 40% 40% at 92% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbfaf6 48%, #ffffff 100%);
}

.awards-section--plain {
    padding-top: 1.5rem;
    background: transparent;
}

.awards-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.awards-decor-statue {
    left: -2%;
    top: 18%;
    width: min(280px, 28vw);
    height: min(420px, 55vh);
    opacity: 0.07;
    background:
        radial-gradient(ellipse 40% 18% at 50% 12%, rgba(201, 162, 39, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 28% 12% at 50% 22%, rgba(201, 162, 39, 0.7) 0%, transparent 70%),
        linear-gradient(180deg, transparent 18%, rgba(201, 162, 39, 0.55) 35%, rgba(201, 162, 39, 0.35) 70%, transparent 92%);
    filter: blur(0.5px);
    mask-image: linear-gradient(90deg, #000 40%, transparent 95%);
    -webkit-mask-image: linear-gradient(90deg, #000 40%, transparent 95%);
}

.awards-decor-statue::before {
    content: '';
    position: absolute;
    inset: 8% 30% 12%;
    border-radius: 40% 40% 18% 18%;
    border: 2px solid rgba(201, 162, 39, 0.55);
    box-shadow: inset 0 0 30px rgba(201, 162, 39, 0.2);
}

.awards-decor-strip {
    width: 160px;
    height: 90px;
    bottom: 8%;
    opacity: 0.08;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(201, 162, 39, 0.85) 0 10px,
            transparent 10px 16px
        ),
        linear-gradient(180deg, transparent 18%, rgba(201, 162, 39, 0.5) 18%, rgba(201, 162, 39, 0.5) 82%, transparent 82%);
    transform: rotate(-18deg);
}

.awards-decor-strip-left {
    left: 4%;
}

.awards-decor-strip-right {
    right: 3%;
    transform: rotate(16deg);
    bottom: 12%;
}

.awards-inner {
    position: relative;
    z-index: 1;
}

.awards-head {
    text-align: center;
    margin-bottom: 2.35rem;
}

.awards-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.awards-eyebrow-line {
    display: block;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.75), transparent);
}

.awards-eyebrow-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.85rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.28);
}

.awards-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.45rem;
    line-height: 1.15;
}

.awards-title span {
    color: var(--primary-gold);
}

.awards-subtitle {
    margin: 0;
    color: #8a8a8a;
    font-size: 0.95rem;
    font-weight: 400;
}

.awards-head-mark {
    display: inline-flex;
    margin-top: 0.85rem;
    color: rgba(201, 162, 39, 0.55);
    font-size: 0.95rem;
}

.awards-empty {
    text-align: center;
    color: var(--medium-gray);
    margin: 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.award-card {
    --award-a: #d4af37;
    --award-b: #b8860b;
    --award-glow: rgba(212, 175, 55, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 16px;
    padding: 1.35rem 0.85rem 1.15rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(20, 24, 32, 0.06),
        0 2px 6px rgba(20, 24, 32, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card::before,
.award-card::after {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--award-a), var(--award-b));
    opacity: 0.9;
}

.award-card::before {
    top: 0;
}

.award-card::after {
    bottom: 0;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 36px rgba(20, 24, 32, 0.1),
        0 0 0 1px rgba(201, 162, 39, 0.12),
        0 12px 30px var(--award-glow);
}

.award-tone-1 { --award-a: #e0b84a; --award-b: #c9a227; --award-glow: rgba(201, 162, 39, 0.28); }
.award-tone-2 { --award-a: #e0455a; --award-b: #c43b4e; --award-glow: rgba(196, 59, 78, 0.28); }
.award-tone-3 { --award-a: #2bb39a; --award-b: #1f8a7a; --award-glow: rgba(31, 138, 122, 0.28); }
.award-tone-4 { --award-a: #e8a93a; --award-b: #d4891a; --award-glow: rgba(232, 169, 58, 0.28); }
.award-tone-5 { --award-a: #9b6bdf; --award-b: #7a4fc4; --award-glow: rgba(122, 79, 196, 0.28); }
.award-tone-6 { --award-a: #4d8fe8; --award-b: #2f6fd0; --award-glow: rgba(47, 111, 208, 0.28); }

.award-emblem {
    position: relative;
    width: 86px;
    height: 86px;
    margin: 0 auto 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-laurel {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 12c-10 8-18 20-20 34 6-4 14-8 20-8s14 4 20 8c-2-14-10-26-20-34z' stroke='%23C9A227' stroke-width='2.2' fill='rgba(201,162,39,0.08)'/%3E%3Cpath d='M22 40c-2 8-1 18 3 26 5-6 12-10 18-12-8-2-15-7-21-14z' stroke='%23C9A227' stroke-width='2' fill='rgba(201,162,39,0.1)'/%3E%3Cpath d='M78 40c2 8 1 18-3 26-5-6-12-10-18-12 8-2 15-7 21-14z' stroke='%23C9A227' stroke-width='2' fill='rgba(201,162,39,0.1)'/%3E%3Cpath d='M18 58c0 10 5 18 12 24 2-8 7-14 13-18-10-1-18-3-25-6z' stroke='%23C9A227' stroke-width='1.8' fill='rgba(201,162,39,0.08)'/%3E%3Cpath d='M82 58c0 10-5 18-12 24-2-8-7-14-13-18 10-1 18-3 25-6z' stroke='%23C9A227' stroke-width='1.8' fill='rgba(201,162,39,0.08)'/%3E%3Cpath d='M28 78c6 6 13 10 22 10s16-4 22-10c-6 2-14 3-22 3s-16-1-22-3z' stroke='%23C9A227' stroke-width='1.6' fill='rgba(201,162,39,0.06)'/%3E%3C/svg%3E")
        center / contain no-repeat;
    opacity: 0.95;
}

.award-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(145deg, var(--award-a), var(--award-b));
    box-shadow:
        0 8px 18px var(--award-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.12);
}

.award-icon--photo {
    width: 58px;
    height: 58px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(201, 162, 39, 0.45);
    box-shadow: 0 8px 18px rgba(20, 24, 32, 0.12);
}

.award-icon--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-name {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.3rem;
    line-height: 1.25;
}

.award-org {
    color: #8b8b8b;
    font-size: 0.72rem;
    line-height: 1.4;
    margin: 0 0 0.85rem;
    min-height: 2em;
    font-weight: 400;
}

.award-year-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.award-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
    background: linear-gradient(135deg, var(--award-a), var(--award-b));
    box-shadow: 0 6px 14px var(--award-glow);
}

.award-year-leaf {
    width: 14px;
    height: 18px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18' fill='none'%3E%3Cpath d='M12 2C7 4 4 8 3 13c3-1 6-2 8-4-1-3-1-5-1-7z' fill='%23C9A227'/%3E%3Cpath d='M3 13c2 2 5 3 8 2' stroke='%23B8860B' stroke-width='0.8'/%3E%3C/svg%3E")
        center / contain no-repeat;
    opacity: 0.85;
}

.award-year-leaf-right {
    transform: scaleX(-1);
}

@media (max-width: 1199.98px) {
    .awards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .awards-section {
        padding: 3rem 0 2.75rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .award-card {
        padding: 1.15rem 0.7rem 1rem;
    }

    .award-name {
        font-size: 0.95rem;
    }

    .awards-decor-statue {
        opacity: 0.05;
    }
}

/* ===== Upcoming Projects Section ===== */
.upcoming-section {
    background: #f6f3eb;
    padding: 3.5rem 0 3rem;
}

.upcoming-header {
    margin-bottom: 1.75rem;
}

.upcoming-header .section-title {
    margin-bottom: 0.55rem;
}

.upcoming-header .section-description {
    margin-bottom: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
}

.project-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 8px 24px rgba(14, 22, 36, 0.05);
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 0;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 138, 122, 0.22);
    box-shadow: 0 14px 32px rgba(14, 22, 36, 0.08);
}

.project-media {
    position: relative;
    min-height: 170px;
    background: #1a1a1a;
    overflow: hidden;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.project-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg, #1f2a28 0%, #15201e 55%, #0f1615 100%);
}

.project-placeholder span {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.55);
    line-height: 1;
}

.project-status {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
    background: rgba(21, 74, 64, 0.92);
    color: #ffffff;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-content {
    padding: 1.1rem 1.2rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-genre {
    display: inline-block;
    width: fit-content;
    color: #8F7012;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.45rem;
    line-height: 1.25;
}

.project-description {
    color: var(--medium-gray);
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-progress {
    margin-bottom: 0;
    margin-top: auto;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--medium-gray);
    letter-spacing: 0.02em;
}

.progress {
    height: 5px;
    background: #ebe6da;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #1F8A7A, #B8921F);
    transition: width 1s ease;
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .upcoming-section {
        padding: 3rem 0 2.5rem;
    }

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

    .project-card {
        grid-template-columns: 140px 1fr;
    }
}

@media (max-width: 575.98px) {
    .project-card {
        grid-template-columns: 1fr;
    }

    .project-media {
        min-height: 150px;
    }

    .project-content {
        padding: 1rem 1.05rem 1.1rem;
    }

    .project-title {
        font-size: 1.1rem;
    }
}

/* ===== Home Gallery (compact media grid) ===== */
.home-gallery-section {
    background:
        linear-gradient(180deg, #f7f5ef 0%, #ffffff 40%, #faf8f2 100%);
    padding: 2.35rem 0 2.5rem;
}

.gallery-page-section {
    background: transparent;
    padding-top: 0.35rem;
    padding-bottom: 2rem;
}

/* Gallery Photos / Videos switch */
.gallery-switch {
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    padding: 0.3rem;
    margin: 0 auto 1.5rem;
    background: #f3efe6;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 999px;
    width: min(100%, 360px);
}

.gallery-switch-btn {
    position: relative;
    z-index: 1;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--medium-gray);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.7rem 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: color 0.25s ease;
}

.gallery-switch-btn i {
    font-size: 0.78rem;
    opacity: 0.85;
}

.gallery-switch-btn em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.08);
    color: inherit;
}

.gallery-switch-btn.is-active {
    color: var(--charcoal);
}

.gallery-switch-btn.is-active em {
    background: rgba(201, 162, 39, 0.22);
    color: #8F7012;
}

.gallery-switch-pill {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    width: calc(50% - 0.275rem);
    height: calc(100% - 0.6rem);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(26, 26, 26, 0.08);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    pointer-events: none;
}

.gallery-switch[data-active="video"] .gallery-switch-pill,
.gallery-switch:has([data-gallery-filter="video"].is-active) .gallery-switch-pill {
    transform: translateX(calc(100% + 0.25rem));
}

.gallery-switch-grid {
    transition: opacity 0.22s ease, transform 0.28s ease;
}

.gallery-switch-grid.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.home-gallery-item.is-filtered-out {
    display: none !important;
}

.gallery-switch-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--medium-gray);
}

.gallery-switch-empty.is-hidden {
    display: none;
}

.gallery-switch-empty i {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.gallery-switch-empty p {
    margin: 0;
    font-size: 0.92rem;
}

.home-gallery-badge.is-photo-badge {
    background: rgba(26, 26, 26, 0.72);
}

.home-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    flex-wrap: wrap;
}

.home-gallery-head .section-subtitle {
    margin-bottom: 0.35rem;
}

.home-gallery-head .section-title {
    margin-bottom: 0.15rem;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.home-gallery-head .section-description {
    margin-bottom: 0;
    max-width: 380px;
    font-size: 0.85rem;
}

.home-gallery-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(201, 162, 39, 0.55);
    padding-bottom: 0.1rem;
}

.home-gallery-all:hover {
    color: var(--primary-gold);
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
}

.home-gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.home-gallery-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: #161616;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 4px 12px rgba(14, 22, 36, 0.05);
}

.home-gallery-item:nth-child(5n+1):not(.is-video) .home-gallery-media,
.home-gallery-item:nth-child(5n+3):not(.is-video) .home-gallery-media {
    aspect-ratio: 16 / 10;
}

.home-gallery-item.is-video .home-gallery-media,
.home-gallery-item.is-video.is-portrait .home-gallery-media {
    aspect-ratio: 16 / 10;
    margin: 0;
}

.home-gallery-item.is-video:not(.is-portrait),
.home-gallery-item.is-video.is-portrait {
    grid-column: span 1;
}

.home-gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.35s ease;
}

.home-gallery-item:hover .home-gallery-media img {
    transform: scale(1.04);
}

.home-gallery-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 162, 39, 0.7);
    font-size: 1.15rem;
    background: linear-gradient(160deg, #1c1c1c, #0f0f0f);
}

.home-gallery-play,
.home-gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.95);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.home-gallery-item.is-video .home-gallery-play,
.home-gallery-item:hover .home-gallery-play,
.home-gallery-item:hover .home-gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.home-gallery-item.is-video .home-gallery-play {
    opacity: 1;
}

.home-gallery-badge {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    padding: 0.12rem 0.4rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.home-gallery-caption {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--dark-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-gallery-empty {
    text-align: center;
    padding: 1.75rem 1rem;
    border: 1px dashed rgba(26, 26, 26, 0.12);
    border-radius: 10px;
    color: var(--medium-gray);
    background: rgba(255, 255, 255, 0.6);
}

.home-gallery-empty i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.4rem;
    display: block;
}

.home-gallery-empty p {
    margin: 0;
    font-size: 0.8125rem;
}

/* Gallery lightbox */
.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(5px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    background: #121212;
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 14px;
    padding: 1.1rem 1.15rem 1.15rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.gallery-lightbox-title {
    margin: 0 0 0.75rem;
    padding-right: 2.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--light-gold);
}

.gallery-lightbox-stage {
    position: relative;
    width: 100%;
    min-height: 220px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-lightbox-stage img,
.gallery-lightbox-stage video,
.gallery-lightbox-stage iframe {
    display: block;
    width: 100%;
    max-height: min(72vh, 640px);
    margin: 0 auto;
    border: 0;
    object-fit: contain;
    background: #000;
}

.gallery-lightbox-stage iframe,
.gallery-lightbox-stage video {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 280px;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .home-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .home-gallery-item.is-video:not(.is-portrait) {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .home-gallery-section {
        padding: 1.85rem 0 2rem;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .home-gallery-item.is-video:not(.is-portrait),
    .home-gallery-item.is-video.is-portrait {
        grid-column: span 1;
    }

    .home-gallery-play,
    .home-gallery-zoom {
        width: 30px;
        height: 30px;
        font-size: 0.62rem;
        opacity: 1;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    background-color: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 162, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ===== Press & Media Section ===== */
.press-section {
    background: linear-gradient(180deg, #f7f4ec 0%, #f3efe4 100%);
    padding: 4rem 0 3.5rem;
}

.press-header {
    margin-bottom: 2.25rem;
}

.press-header .section-title {
    margin-bottom: 0.65rem;
}

.press-header .section-description {
    margin-bottom: 0;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

.press-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 8px 28px rgba(14, 22, 36, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 146, 31, 0.28);
    box-shadow: 0 16px 36px rgba(14, 22, 36, 0.09);
}

.press-image {
    aspect-ratio: 16 / 10;
    min-height: 160px;
    overflow: hidden;
    background: #ebe6da;
    position: relative;
}

.press-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.18));
    pointer-events: none;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.press-body {
    padding: 1.25rem 1.3rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.press-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.press-outlet {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #8F7012;
}

.press-date {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light-gray);
    white-space: nowrap;
}

.press-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--charcoal);
    margin: 0 0 0.65rem;
}

.press-excerpt {
    color: var(--medium-gray);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.65;
    margin: 0 0 1.1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-top: auto;
    padding-top: 0.15rem;
    border-top: none;
    transition: var(--transition);
}

.press-link i {
    font-size: 0.7rem;
    color: var(--primary-gold);
    transition: transform 0.25s ease;
}

.press-link:hover {
    color: #8F7012;
}

.press-link:hover i {
    transform: translateX(4px);
}

.press-footer-cta {
    margin-top: 1.75rem;
}

@media (max-width: 991.98px) {
    .press-section {
        padding: 3.25rem 0 2.75rem;
    }

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

@media (max-width: 767.98px) {
    .press-grid,
    .press-grid-page {
        grid-template-columns: 1fr;
    }

    .press-image {
        height: 180px;
    }

    .press-body {
        padding: 1.15rem 1.15rem 1.25rem;
    }

    .press-title {
        font-size: 1.1rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonial-card {
    background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-gold);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.testimonial-author h5 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.swiper-pagination {
    margin-top: 2rem !important;
}

.swiper-pagination-bullet {
    background: var(--light-gold);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold);
}

/* ===== Contact Section ===== */
.contact-section {
    position: relative;
    background:
        radial-gradient(ellipse 40% 50% at 0% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 35% 45% at 100% 70%, rgba(201, 162, 39, 0.07) 0%, transparent 50%),
        #f8f6f0;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.contact-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.contact-decor-spot {
    width: 220px;
    height: 280px;
    left: -20px;
    top: 18%;
    opacity: 0.35;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(201, 162, 39, 0.55) 0%, transparent 55%),
        linear-gradient(180deg, transparent 40%, rgba(201, 162, 39, 0.2) 100%);
}

.contact-decor-spot::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 55px;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.25);
}

.contact-decor-spot::after {
    content: '';
    position: absolute;
    top: 100px;
    left: 80px;
    width: 18px;
    height: 120px;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.45), rgba(201, 162, 39, 0.1));
    border-radius: 4px;
}

.contact-decor-reel {
    width: 260px;
    height: 260px;
    right: -50px;
    bottom: 8%;
    opacity: 0.18;
    background:
        radial-gradient(circle at center, transparent 26%, rgba(201, 162, 39, 0.95) 27%, rgba(201, 162, 39, 0.95) 31%, transparent 32%),
        repeating-conic-gradient(from 0deg, rgba(201, 162, 39, 0.55) 0deg 10deg, transparent 10deg 28deg);
    border-radius: 50%;
    border: 3px solid rgba(201, 162, 39, 0.4);
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-header {
    margin-bottom: 2.75rem;
}

.contact-header .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.contact-header-dot {
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.contact-header .section-description {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--medium-gray);
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.07);
    border: 1px solid rgba(201, 162, 39, 0.12);
}

.contact-card-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.08));
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--primary-gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--charcoal);
}

.contact-intro {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid rgba(201, 162, 39, 0.4);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-info-item h5 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.contact-info-item p a {
    color: var(--dark-gray);
}

.contact-info-item p a:hover {
    color: var(--primary-gold);
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.contact-social .social-link {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    background: transparent;
    border: 1.5px solid rgba(201, 162, 39, 0.4);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social .social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201, 162, 39, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-beige);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-input {
    position: relative;
}

.contact-input > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.contact-input-textarea > i {
    top: 1.15rem;
    transform: none;
}

.contact-form .form-control {
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 10px;
    padding: 0.85rem 1rem 0.85rem 2.65rem;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #fafafa;
    color: var(--charcoal);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
    padding-top: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
    background: var(--white);
}

.contact-form .form-control::placeholder {
    color: var(--light-gray);
}

.contact-submit {
    margin-top: 1.25rem;
    padding: 0.95rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #d4af37, #c9a227, #b8860b);
    border: none;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.3);
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(201, 162, 39, 0.4);
    background: linear-gradient(135deg, #e0bc4a, #d4af37, #c9a227);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 2.5rem;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.07);
    border: 1px solid rgba(201, 162, 39, 0.12);
}

.map-wrapper iframe {
    width: 100%;
    display: block;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    background:
        radial-gradient(ellipse 50% 60% at 0% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 100% 80%, rgba(196, 59, 78, 0.1) 0%, transparent 50%),
        linear-gradient(165deg, #0a0c10 0%, #12151c 45%, #0d1016 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.25);
    padding: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.85);
}

.footer-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.footer-decor-spot {
    width: 280px;
    height: 280px;
    top: -40px;
    left: -40px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
}

.footer-decor-spot::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 70px;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(201, 162, 39, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 0 30px rgba(201, 162, 39, 0.15);
}

.footer-decor-reel {
    width: 320px;
    height: 320px;
    bottom: -80px;
    right: -60px;
    opacity: 0.08;
    background:
        radial-gradient(circle at center, transparent 28%, rgba(201, 162, 39, 0.9) 29%, rgba(201, 162, 39, 0.9) 32%, transparent 33%),
        repeating-conic-gradient(from 0deg, rgba(201, 162, 39, 0.5) 0deg 8deg, transparent 8deg 24deg);
    border-radius: 50%;
    border: 3px solid rgba(201, 162, 39, 0.35);
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 2.25rem;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-falcon-logo,
.footer-production-logo {
    height: 54px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-site-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-monogram {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.12);
    flex-shrink: 0;
}

.footer-brand {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 0;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-top: 0.35rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 360px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    max-width: 360px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.55;
}

.footer-contact-item i {
    color: var(--primary-gold);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: inherit;
    transition: var(--transition);
}

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

.footer-contact-item .contact-phone-sep {
    opacity: 0.65;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1.1rem;
    transition: var(--transition);
}

.footer-email i {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

.footer-email:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 0.55rem;
}

.footer-social .social-link {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--primary-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #0a0c10;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 162, 39, 0.28);
}

.footer-col-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.footer-col-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--primary-gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin: 0;
    position: relative;
    padding-bottom: 0.35rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-gold);
}

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

.footer-links li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0;
    line-height: 1.35;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.55rem;
    color: var(--primary-gold);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

.newsletter-form {
    max-width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}

.newsletter-form .form-control {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 0 1rem;
    height: 46px;
    font-size: 0.875rem;
    background: transparent;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0 1.25rem;
    height: 46px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    color: #0a0c10;
}

.footer-map {
    margin-top: 1.15rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    height: 140px;
}

.footer-map iframe {
    width: 100%;
    height: 140px;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

.footer-bottom-wrap {
    position: relative;
    z-index: 1;
    padding: 0 0 1.75rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 14px;
    padding: 1rem 1.35rem;
    backdrop-filter: blur(8px);
}

.copyright {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8125rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.copyright i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex: 1;
}

.footer-legal li {
    display: flex;
    align-items: center;
}

.footer-legal li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

.back-to-top {
    position: static;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #0a0c10;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
    z-index: 1;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.45);
    flex-shrink: 0;
    margin-left: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    box-shadow: 0 0 28px rgba(201, 162, 39, 0.55);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ===== Responsive Design ===== */
@media (max-width: 991.98px) {
    .container {
        max-width: 100%;
    }

    .hero-section .col-lg-6,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Keep footer link columns side-by-side on tablet/mobile */
    .footer-grid > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-grid > .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.35rem);
    }
    
    .about-content {
        padding-right: 0;
        padding-left: 0;
        margin-top: 0;
    }

    .about-visual {
        min-height: 280px;
        margin-top: 0.5rem;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 5.5rem 0 1.35rem;
    }

    .page-banner-title {
        font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    }

    .page-banner-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .experience-section {
        padding: 0 0 1rem;
    }

    .counters-wrapper {
        margin-top: -1.5rem;
        position: relative;
        z-index: 5;
    }

    .counter-card {
        margin-bottom: 0.35rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .counters-wrapper {
        padding: 0.9rem 0.4rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 240px;
        padding: 1rem 0.5rem;
    }

    .experience-badge {
        width: 112px;
        min-height: 158px;
        padding: 1rem 0.75rem;
        border-radius: 14px;
    }

    .badge-number {
        font-size: 1.9rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .mv-item {
        padding: 0.8rem;
    }

    .contact-header {
        margin-bottom: 1.5rem;
    }

    .contact-header .section-title {
        font-size: 1.85rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.35rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.85rem;
    }

    .copyright {
        justify-content: center;
        text-align: center;
    }

    .back-to-top {
        margin-left: 0;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .quote-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }

    .project-content {
        padding: 1rem 1.05rem 1.1rem;
    }

    .footer-main {
        padding: 2.75rem 0 1.75rem;
    }

    .footer-brand-block {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0.85rem;
    }

    .footer-monogram {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .footer-brand .logo-text {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
        max-width: none;
    }

    .footer-email {
        font-size: 0.8125rem;
        margin-bottom: 0.9rem;
        word-break: break-all;
    }

    .footer-social {
        margin-bottom: 0.35rem;
    }

    .footer-social .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .footer-col-head {
        margin-bottom: 0.75rem;
        gap: 0.45rem;
    }

    .footer-col-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .footer-title {
        font-size: 0.7rem;
        letter-spacing: 1.3px;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }

    .footer-newsletter-text {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-input-group {
        flex-direction: row;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        height: 44px;
        font-size: 0.8125rem;
    }

    .newsletter-form .btn {
        width: auto;
        padding: 0 1rem;
        white-space: nowrap;
    }

    .footer-map {
        margin-top: 1rem;
        height: 130px;
    }

    .footer-map iframe {
        height: 130px !important;
    }

    .footer-bottom-wrap {
        padding: 0.5rem 0 1.35rem;
    }

    .footer-decor-spot,
    .footer-decor-reel {
        opacity: 0.35;
        transform: scale(0.7);
    }
}

/* ===== Site Loading Screen ===== */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 55% 45% at 50% 40%, rgba(201, 162, 39, 0.16), transparent 60%),
        linear-gradient(160deg, #0e1218 0%, #161a22 50%, #1a1610 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-inner {
    position: relative;
    text-align: center;
    padding: 1rem;
}

.site-loader-logo-wrap {
    position: relative;
    width: 120px;
    height: 88px;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-loader-logo-wrap .site-loader-ring {
    top: 50%;
    left: 50%;
    width: 112px;
    height: 112px;
    margin: -56px 0 0 -56px;
}

.site-loader-logo {
    position: relative;
    z-index: 1;
    max-width: 100px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.site-loader-mark {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.18);
}

.site-loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88px;
    height: 88px;
    margin: -62px 0 0 -44px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.15);
    border-top-color: var(--primary-gold);
    animation: siteLoaderSpin 0.85s linear infinite;
}

.site-loader-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes siteLoaderSpin {
    to { transform: rotate(360deg); }
}

body.site-loading {
    overflow: hidden;
}

/* Legacy loader kept for compatibility */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--light-beige);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== PHP site extras ===== */
.site-logo-img {
    max-height: 48px;
    width: auto;
}

.site-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: fadeIn 0.3s ease;
}

.site-toast.success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.site-toast.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ===== Contact success popup ===== */
body.contact-popup-open {
    overflow: hidden;
}

.contact-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.18), transparent 45%),
        rgba(14, 14, 14, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: contactPopupFade 0.28s ease;
}

.contact-success-overlay.is-closing {
    animation: contactPopupFadeOut 0.28s ease forwards;
}

.contact-success-card {
    position: relative;
    width: min(100%, 400px);
    background:
        linear-gradient(180deg, #ffffff 0%, #faf8f2 100%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 18px;
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    animation: contactCardIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-success-overlay.is-closing .contact-success-card {
    animation: contactCardOut 0.28s ease forwards;
}

.contact-success-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.05);
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.contact-success-close:hover {
    background: #1a1a1a;
    color: #fff;
}

.contact-success-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-gold), #b8921f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}

.contact-success-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.35);
    animation: contactRingPulse 1.6s ease infinite;
}

.contact-success-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8f7012;
}

.contact-success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.55rem;
}

.contact-success-text {
    margin: 0 0 1.35rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.contact-success-btn {
    min-width: 140px;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

@keyframes contactPopupFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes contactPopupFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes contactCardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes contactCardOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(12px) scale(0.97); }
}

@keyframes contactRingPulse {
    0% { transform: scale(0.92); opacity: 0.9; }
    70% { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}

.video-container .ratio iframe {
    border-radius: 12px;
}

.play-button {
    text-decoration: none;
    color: inherit;
}
