:root {
    --ink: #121011;
    --ink-soft: #1c1719;
    --red: #c8142e;
    --red-light: #e2465b;
    --ivory: #f7f3ed;
    --paper: #efe7dd;
    --gold: #b8892e;
    --stone: #96908a;
    --hairline: rgba(18,16,17,0.13);
    --hairline-dark: rgba(247,243,237,0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin: 0;
}

em {
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}

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

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

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--red);
        display: inline-block;
    }

    .eyebrow.on-dark {
        color: rgb(255, 255, 255);
    }

svg.icon {
    width: 26px;
    height: 26px;
    display: block;
}

/* ---------- Header / nav (shared across all pages) ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(18,16,17,0.94);
    backdrop-filter: blur(6px);
}

.navwrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .brand img {
        width: 75px;
        height: 75px;
        border-radius: 50%;
    }

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    letter-spacing: 0.04em;
    color: var(--ivory);
    line-height: 1.15;
}

    .brand-text span {
        display: block;
        font-family: 'Jost',sans-serif;
        font-size: 9px;
        letter-spacing: 0.24em;
        color: var(--red-light);
        text-transform: uppercase;
        margin-top: 2px;
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247,243,237,0.82);
    position: relative;
    padding-bottom: 4px;
}

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: var(--red-light);
        transition: width 0.3s ease;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a.active {
        color: var(--ivory);
    }

        nav a.active::after {
            width: 100%;
        }

.nav-cta {
    border: 1px solid var(--red);
    color: var(--ivory);
    padding: 9px 20px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    background: rgba(200,20,46,0.12);
}

    .nav-cta:hover {
        background: var(--red);
    }

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

    .menu-btn i {
        color: var(--red);
        font-size: 22px;
    }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: var(--ink);
    color: var(--ivory);
    padding: 120px 120px 10px 50px;
    position: relative;
    overflow: hidden;
}

    .hero .wrap {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: clamp(36px,4.6vw,56px);
        color: var(--ivory);
        margin-top: 14px;
    }

    .hero p {
        margin-top: 16px;
        max-width: 520px;
        color: rgba(247,243,237,0.68);
        font-size: 15.5px;
        line-height: 1.7;
    }

    .hero .crumb {
        font-size: 12px;
        color: rgba(247,243,237,0.45);
        margin-top: 22px;
    }

        .hero .crumb a {
            color: var(--red-light);
        }

.hero-ring {
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    opacity: 0.5;
    z-index: 1;
}

/* ---------- Home hero ---------- */
.hero {
    background-color: var(--ink);
    color: var(--ivory);
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}
    /* Dark overlay */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.60); /* Adjust opacity as needed */
        z-index: 1;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(40px,5.2vw,68px);
    line-height: 1.08;
    color: var(--ivory);
}

.hero p.lead {
    margin-top: 22px;
    max-width: 440px;
    color: rgba(247,243,237,0.72);
    font-size: 16px;
    line-height: 1.75;
    padding-right: 60px;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: var(--ivory);
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Jost',sans-serif;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--red-light);
    }

.btn-link {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ivory);
    border: 1px solid;
    padding: 14px 15px;
}

/* ---------- Hero stats (icons + dividers + one-line on mobile) ---------- */
.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid var(--hairline-dark);
}

    .hero-stats .stat-item {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
        padding-right: 32px;
        margin-right: 32px;
        border-right: 1px solid var(--hairline-dark);
    }

        .hero-stats .stat-item:last-child {
            border-right: none;
            margin-right: 0;
            padding-right: 0;
        }

    .hero-stats .stat-icon {
        font-size: 18px;
        color: var(--red);
        margin-bottom: 8px;
    }

    .hero-stats .stat-item b {
        font-family: 'Cormorant Garamond', serif;
        font-size: 30px;
        color: #fff;
        line-height: 1;
    }

    .hero-stats .stat-item span:not(.stat-dash) {
        display: block;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgb(255, 255, 255);
        margin-top: 4px;
    }

    .hero-stats .stat-dash {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--red);
        margin-top: 10px;
    }

/* ---------- Hero tagline ---------- */
.hero-tagline {
    margin-top: 44px;
    text-align: center;
}

.hero-tagline-dash {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--red);
    margin-bottom: 14px;
}

.hero-tagline p {
    font-size: 12.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(255,255,255);
    line-height: 1.9;
    margin: 0;
}

    .hero-tagline p .hl {
        color: var(--red-light);
    }

/* ---------- Google Reviews stat variant ---------- */
.hero-stats .stat-item.google-stat .stat-icon-circle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 13px;
    margin-bottom: 8px;
}

.hero-stats .stat-item.google-stat .google-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ivory);
    line-height: 1.15;
}

.hero-stats .stat-item.google-stat .google-rating {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

    .hero-stats .stat-item.google-stat .google-rating .stars {
        color: var(--red);
        font-size: 11px;
        margin-left: 4px;
        letter-spacing: 1px;
    }

@media (max-width:900px) {
    .hero-stats .stat-item.google-stat .stat-icon-circle {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .hero-stats .stat-item.google-stat .google-title {
        font-size: 16px;
    }

    .hero-stats .stat-item.google-stat .google-rating {
        font-size: 12px;
    }
}

@media (max-width:480px) {
    .hero-stats .stat-item.google-stat .stat-icon-circle {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin-bottom: 5px;
    }

    .hero-stats .stat-item.google-stat .google-title {
        font-size: 13.5px;
    }

    .hero-stats .stat-item.google-stat .google-rating {
        font-size: 10.5px;
        margin-top: 3px;
    }
}

@media (max-width:900px) {
    .hero-stats .stat-item {
        padding-right: 22px;
        margin-right: 22px;
    }

    .hero-stats .stat-icon {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .hero-stats .stat-item b {
        font-size: 24px;
    }
}

@media (max-width:480px) {
    .hero-stats .stat-item {
        padding-right: 12px;
        margin-right: 12px;
    }

    .hero-stats .stat-icon {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .hero-stats .stat-item b {
        font-size: 20px;
    }

    .hero-stats .stat-item span:not(.stat-dash) {
        font-size: 9.5px;
        letter-spacing: 0.03em;
    }

    .hero-stats .stat-dash {
        width: 14px;
        margin-top: 7px;
    }
}

.lens-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lens-wrap svg {
        width: 100%;
        max-width: 420px;
        height: auto;
    }

/* ---------- Section shared ---------- */
section {
    padding: 60px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 60px;
}

    .section-head h2 {
        font-size: clamp(30px,3.6vw,40px);
        margin-top: 14px;
        line-height: 1.15;
    }

    .section-head p {
        color: #524d49;
        margin-top: 16px;
        font-size: 15.5px;
        line-height: 1.7;
    }

    .section-head.center {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        .section-head.center .eyebrow {
            justify-content: center;
        }

            .section-head.center .eyebrow::before {
                display: none;
            }

/* ---------- Services grid (used on home + services page) ---------- */
.services {
    background: var(--paper);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
}

.service-card {
    background: var(--paper);
    padding: 36px 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.3s ease;
}

    .service-card:hover {
        background: var(--ivory);
    }

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.frame-tag {
    font-size: 11px;
    color: var(--stone);
    letter-spacing: 0.05em;
}

.service-card svg {
    color: var(--red);
}

.service-card h3 {
    font-size: 24px;
    margin-top: 22px;
}

.service-card p {
    font-size: 13.5px;
    color: #524d49;
    margin-top: 10px;
    line-height: 1.65;
}

.service-card a.more {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 2px;
}

/* ---------- Service detail rows (services page) ---------- */
.service-detail {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--hairline);
}

    .service-detail:first-of-type {
        padding-top: 0;
    }

    .service-detail:last-of-type {
        border-bottom: none;
    }

    .service-detail.reverse {
        grid-template-columns: 1.3fr 0.7fr;
    }

        .service-detail.reverse .sd-visual {
            order: 2;
        }

.sd-visual {
    background: var(--ink);
    border-radius: 4px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sd-visual svg {
        width: 64%;
        max-width: 180px;
    }

.sd-text .frame-tag {
    color: var(--red);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.sd-text h3 {
    font-size: clamp(24px,2.6vw,32px);
    margin-top: 10px;
}

.sd-text p {
    color: #524d49;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
}

.sd-list {
    margin-top: 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .sd-list li {
        font-size: 13.5px;
        color: #413d3a;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

        .sd-list li::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--red);
            margin-top: 7px;
            flex-shrink: 0;
        }

/* ---------- About ---------- */
.about {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    background: var(--ink);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

    .about-visual svg {
        width: 100%;
        max-width: 280px;
    }

.about h2 {
    font-size: clamp(28px,3.2vw,40px);
    margin-top: 14px;
}

.about p {
    color: #524d49;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.75;
}

.about-badges {
    display: flex;
    gap: 36px;
    margin-top: 32px;
    flex-wrap: wrap;
}

    .about-badges div b {
        display: block;
        font-family: 'Cormorant Garamond',serif;
        font-size: 28px;
        color: var(--red);
    }

    .about-badges div span {
        font-size: 11px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--stone);
    }

.value-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.value-card {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 30px 26px;
}

    .value-card svg {
        color: var(--red);
        margin-bottom: 16px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 13.5px;
        color: #524d49;
        margin-top: 10px;
        line-height: 1.65;
    }

/* ---------- Gallery ---------- */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

    .gallery-filters button {
        font-family: 'Jost',sans-serif;
        font-size: 12px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 10px 18px;
        border: 1px solid var(--hairline);
        background: transparent;
        border-radius: 20px;
        cursor: pointer;
        color: var(--ink);
        transition: all 0.2s ease;
    }

        .gallery-filters button.active, .gallery-filters button:hover {
            background: var(--ink);
            color: var(--ivory);
            border-color: var(--ink);
        }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

    .gallery-grid .tall {
        grid-row: span 2;
    }

.plate {
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

    .plate.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .plate svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .plate .plate-label {
        position: relative;
        z-index: 2;
        left: 16px;
        bottom: 14px;
        color: var(--ivory);
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0 16px 14px;
    }

    .plate::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
        z-index: 1;
    }

    .plate.hidden {
        display: none;
    }

/* ---------- Process ---------- */
.process {
    background: var(--ink);
    color: var(--ivory);
    padding: 60px 0;
    position: relative;
}

    .process .section-head {
        text-align: center;
        margin-bottom: 50px;
    }

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.process-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 35px;
    height: 2px;
    background: rgba(255,255,255,.18);
    z-index: 0;
}

.process-item {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 2;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #C8142E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(200,20,46,.35);
}

.step-number {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
    margin: 20px 0 8px;
}

.process-item h3 {
    color: #fff;
    margin-bottom: 12px;
}

.process-item p {
    color: #bbb;
    line-height: 1.7;
    font-size: 15px;
    max-width: 230px;
    margin: auto;
}

.process-icon:hover {
    transform: scale(1.08);
    transition: .35s;
}
/*----------Reels----------------*/
.showreel-section {
    background: #000;
    padding: 90px 0;
}

.showreel-container {
    display: grid;
    grid-template-columns: minmax(280px,350px) 1fr;
    gap: 45px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 35px 0;
    width: 100%;
}

.showreel-content h2 {
    color: #fff;
    font-size: 48px;
    line-height: 1.1;
    margin: 15px 0;
}

.showreel-content p {
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 35px;
}

.reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 8px 34px;
    background: #C8142E;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .35s;
}

    .reel-btn span {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reel-btn:hover {
        background: #E01E3A;
    }

.showreel-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 350px;
}

    .showreel-video img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: .5s;
    }

    .showreel-video:hover img {
        transform: scale(1.05);
    }

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: rgba(0,0,0,.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    transition: .35s;
}

    .video-play:hover {
        background: #C8142E;
        border-color: #C8142E;
        transform: translate(-50%,-50%) scale(1.08);
    }
/* ---------- Testimonials ---------- */
.testimonial-section {
    padding: 80px 0;
}

.testimonialSlider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px;
}

    .testimonialSlider .swiper-wrapper {
        align-items: stretch;
    }

    .testimonialSlider .swiper-slide {
        display: flex;
        height: auto;
    }

.testi-card {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    border-radius: 18px;
    background: #f8f3ec;
    border: 1px solid rgba(0,0,0,.08);
    transition: .35s;
}

    .testi-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.review-user {
    flex-shrink: 0;
}
    .review-user-fallback {
        width: 85px;
        height: 85px;
        border-radius: 50%;
        border: 4px solid #c8142e;
        background: var(--paper);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--stone);
        font-size: 32px;
    }
    .review-user img {
        width: 85px;
        height: 85px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #c8142e;
    }

.review-content {
    flex: 1;
}

.stars {
    color: #c8142e;
    font-size: 18px;
    margin-bottom: 12px;
}

.review-content blockquote {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.review-content cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #111;
}

    .review-content cite span {
        display: block;
        color: #c8142e;
        font-size: 14px;
        margin-top: 4px;
    }

.swiper-button-next,
.swiper-button-prev {
    color: #c8142e;
}

.swiper-pagination-bullet {
    background: #c8142e;
}

.swiper-pagination-bullet-active {
    background: #c8142e;
}
/* ---------- FAQ (used on services page) ---------- */
.faq-item {
    border-bottom: 1px solid var(--hairline);
    padding: 22px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Cormorant Garamond',serif;
    font-weight: 500;
}

    .faq-q .plus {
        font-size: 20px;
        color: var(--red);
        transition: transform 0.25s ease;
    }

.faq-item.open .faq-q .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 240px;
}

.faq-a p {
    font-size: 14px;
    color: #524d49;
    line-height: 1.7;
    padding-top: 12px;
    margin: 0;
}

/* ---------- Contact ---------- */
.contact {
    background: var(--paper);
    border-top: 1px solid var(--hairline);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.field {
    margin-bottom: 18px;
}

    .field label {
        display: block;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 5px;
    }

    .field input, .field select, .field textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--hairline);
        background: transparent;
        font-family: 'Jost', sans-serif;
        font-size: 15px;
        padding: 5px 0;
        color: var(--ink);
    }

        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none;
            border-color: var(--red);
        }

.contact-info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    font-size: 15px;
}

.contact-info dt {
    color: var(--stone);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: 3px;
}

.contact-info dd {
    margin: 0;
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

    .social-row a {
        width: 38px;
        height: 38px;
        border: 1px solid var(--hairline);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
    }

        .social-row a:hover {
            background: var(--red);
            border-color: var(--red);
            color: var(--ivory);
        }

.map-box {
    margin-top: 70px;
    background: var(--ink);
    border-radius: 4px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    color: rgba(247,243,237,0.5);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-align: center;
}

/* ---------- Footer (shared across all pages) ---------- */
.footer {
    background: #050505;
    color: #bdbdbd;
    padding: 70px 0 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr 1.5fr;
    gap: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 18px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 22px;
}

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

    .footer ul li {
        margin-bottom: 12px;
        color: #bdbdbd;
    }

.footer a {
    color: #bdbdbd;
    text-decoration: none;
    transition: .3s;
}

    .footer a:hover {
        color: #C8142E;
    }

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    color: #C8142E;
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #111;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .35s;
    }

        .footer-social a:hover {
            background: #C8142E;
        }

    .footer-social i {
        color: #fff;
    }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}

    .insta-grid a {
        display: block;
        line-height: 0; /* removes the small gap under inline images inside links */
    }
    .insta-grid img {
        width: 100%;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
        transition: .35s;
    }

        .insta-grid img:hover {
            transform: scale(1.08);
        }

.footer-bottom {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-bottom a {
        color: #bdbdbd;
    }

    .footer-bottom span {
        margin: 0 12px;
    }

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.blog-card {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(18,16,17,0.12);
    }

    .blog-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

.blog-card-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-tag {
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 21px;
    line-height: 1.3;
}

.blog-meta {
    font-size: 11.5px;
    color: var(--stone);
    margin-top: 10px;
    letter-spacing: 0.03em;
}

.blog-card p.excerpt {
    font-size: 13.5px;
    color: #524d49;
    margin-top: 12px;
    line-height: 1.65;
    flex: 1;
}

.blog-card a.read-more {
    margin-top: 16px;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 2px;
    align-self: flex-start;
}

.article-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(247,243,237,0.55);
}

    .article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

.article-body {
    max-width: 720px;
}

    .article-body p {
        color: #413d3a;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 20px;
    }

    .article-body h3 {
        font-size: 24px;
        margin: 36px 0 14px;
    }

    .article-body ul {
        margin: 0 0 20px;
        padding-left: 20px;
    }

        .article-body ul li {
            color: #413d3a;
            font-size: 15.5px;
            line-height: 1.8;
            margin-bottom: 8px;
        }

.pull-quote {
    border-left: 3px solid var(--red);
    padding: 6px 0 6px 24px;
    margin: 30px 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: #2a2724;
}

.article-share {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

    .article-share a {
        width: 36px;
        height: 36px;
        border: 1px solid var(--hairline);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

        .article-share a:hover {
            background: var(--red);
            border-color: var(--red);
            color: var(--ivory);
        }

/* ---------- Packages / pricing cards ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(18,16,17,0.12);
    }

    .pricing-card.featured {
        border-color: var(--red);
        box-shadow: 0 10px 30px rgba(200,20,46,0.12);
    }

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--red);
    color: var(--ivory);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
}

.pricing-card-media svg {
    width: 100%;
    height: auto;
    display: block;
}

.pricing-card-body {
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .pricing-card-body h3 {
        font-size: 24px;
        text-align: center;
    }

.pricing-sub {
    font-size: 13px;
    color: var(--stone);
    margin-top: 6px;
    text-align: center;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--red);
    margin-top: 1px;
    border-bottom: 1px solid;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 22px 0 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .pricing-features li {
        font-size: 13.5px;
        color: #413d3a;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .pricing-features li i {
            color: var(--red);
            font-size: 12px;
        }

.pricing-card .btn-primary {
    margin-top: auto;
}

/* ---------- Package category tabs ---------- */
.package-tabs-strip {
    background: var(--ink);
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    overflow: hidden;
}

.package-tab {
    background: transparent;
    border: none;
    border-right: 1px solid var(--hairline-dark);
    padding: 26px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    color: var(--ivory);
    gap: 10px;
    transition: background 0.25s ease;
    font-family: 'Jost',sans-serif;
    position: relative;
}

    .package-tab:last-child {
        border-right: none;
    }

.package-tab-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
    font-size: 17px;
    transition: background 0.25s ease, color 0.25s ease;
}

.package-tab-title {
    font-weight: 500;
    font-size: 13.5px;
}

.package-tab-desc {
    font-size: 11px;
    color: rgba(247,243,237,0.5);
    line-height: 1.4;
}

.package-tab:hover {
    background: rgba(200,20,46,0.08);
}

.package-tab.active {
    background: rgba(200,20,46,0.16);
}

    .package-tab.active .package-tab-icon {
        background: var(--red);
        color: var(--ivory);
        border-color: var(--red);
    }

.package-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.package-tab.active::after {
    transform: scaleX(1);
}

/* ---------- Pricing sets (one per category, toggled by JS) ---------- */
.pricing-set {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .pricing-set.hidden {
        display: none;
    }

    .pricing-set.fade-out {
        opacity: 0;
        transform: translateY(10px);
    }

    .pricing-set.fade-in {
        animation: pricingFadeIn 0.35s ease forwards;
    }

@keyframes pricingFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-tabs-wrap {
    position: relative;
}

.package-tab-arrow {
    display: none;
}

@media (max-width: 900px) {

    .package-tabs-wrap {
        position: relative;
    }

    .package-tabs-strip {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        /* Space for arrows */
        padding-left: 38px;
        padding-right: 38px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .package-tabs-strip::-webkit-scrollbar {
            display: none;
        }

    .package-tab {
        flex: 0 0 auto;
        min-width: 150px;
        scroll-snap-align: start;
        border-right: 1px solid var(--hairline-dark);
        border-bottom: none;
    }

        .package-tab:last-child {
            border-right: none;
        }

    /* Arrows */
    .package-tab-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: var(--ivory);
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        cursor: pointer;
        z-index: 20;
    }

    .package-tab-prev {
        left: 3px;
    }

    .package-tab-next {
        right: 3px;
    }

    .package-tab-arrow:disabled {
        opacity: 0.3;
        cursor: default;
    }
}

@media (max-width:560px) {
    .package-tab {
        min-width: 130px;
    }
}

/* ---------- Custom package CTA row ---------- */
.custom-cta-row {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.custom-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.custom-cta-text {
    flex: 1;
    min-width: 220px;
}

    .custom-cta-text h3 {
        font-size: 22px;
    }

    .custom-cta-text p {
        font-size: 14px;
        color: #524d49;
        margin-top: 6px;
    }

/* ---------- Trust strip (bottom of Packages page) ---------- */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    padding: 50px 32px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .trust-item i {
        color: var(--red);
        font-size: 20px;
        margin-top: 2px;
    }

    .trust-item h4 {
        font-family: 'Jost',sans-serif;
        font-weight: 500;
        font-size: 14.5px;
        margin: 0;
    }

    .trust-item p {
        font-size: 12.5px;
        color: var(--stone);
        margin-top: 4px;
        line-height: 1.5;
    }

@media (max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

@media (max-width:560px) {
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .custom-cta-row {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- Quick enquiry modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    padding: 20px;
    background: rgba(18,16,17,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

    .modal-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.modal-box {
    background: var(--ivory);
    border-radius: 6px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s ease;
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--stone);
    cursor: pointer;
}

    .modal-close:hover {
        color: var(--red);
    }

/*==============================
    Right Floating Contact Bar
===============================*/

.right-contact-bar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px 1px;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,.45);
    z-index: 9999;
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: transparent;
    transition: .35s ease;
}

    .contact-icon i {
        font-size: 28px;
        transition: .35s;
    }

/* Icons start white (readable over the dark hero photo) */
.right-contact-bar .contact-icon i {
    color: #fff;
    transition: color 0.3s ease;
}

/* Once scrolled past the hero, switch to brand colors */
.right-contact-bar.scrolled .instagram i {
    color: #E1306C;
}

.right-contact-bar.scrolled .whatsapp i {
    color: #25D366;
}

.right-contact-bar.scrolled .call i {
    color: #ff4d6d;
}

/* Hover */

.contact-icon:hover {
    transform: scale(1.12);
}

    .contact-icon:hover i {
        color: #fff;
    }

/*==============================
        Mobile
===============================*/

@media (max-width:768px) {
    .hero-stats {
        margin-top: 30px;
        padding-top: 20px;
    }
    .hero .eyebrow {
        font-size: 9.5px;
    }
    .hero h1 {
        font-size: clamp(35px, 5.2vw, 68px);
    }
    .hero p.lead {
        font-size: 16px;
        line-height: 1.5;
    }
    .right-contact-bar {
        right: 8px;
        top: 50%;
        transform: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px 6px;
        border-radius: 30px;
    }

        .contact-icon {
            width: 34px;
            height: 34px;
        }

            .contact-icon i {
                font-size: 20px;
            }
    }

@media (max-width:900px) {
    nav, .nav-cta {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .lens-wrap {
        margin-top: 40px;
    }

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

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

    .value-grid {
        grid-template-columns: 1fr;
    }

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

        .gallery-grid .tall {
            grid-row: auto;
        }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail, .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .service-detail.reverse .sd-visual {
            order: 0;
        }

    .hero-ring {
        display: none;
    }

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

@media (max-width:560px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .testi-card {
        flex-direction: column;
        text-align: center;
    }

    .review-user img {
        width: 80px;
        height: 80px;
    }

    .review-content blockquote {
        font-size: 22px;
    }

    .blog-grid {
        grid-template-columns: repeat(1,1fr);
    }
}

@media(max-width:991px) {

    .process-timeline {
        flex-direction: column;
        gap: 60px;
    }

    .process-line {
        left: 34px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
    }

    .process-item {
        text-align: left;
        padding-left: 100px;
    }

    .process-icon {
        position: absolute;
        left: 0;
    }

    .process-item p {
        margin: 0;
        max-width: 100%;
    }
}

.video-play::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===========================
   Mobile Hero Banner
=========================== */

@media (max-width:768px) {

    .hero {
        position: relative;
        overflow: hidden;
    }

    .hero-grid {
        display: block;
        position: relative;
    }

        .hero-grid > div:first-child {
            position: relative;
            z-index: 5;
        }

    .lens-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 330px;
        height: 330px;
        z-index: 1;
        opacity: .12;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .lens-wrap svg {
            width: 100%;
            height: 100%;
        }

    .hero h1,
    .hero p,
    .hero-actions {
        position: relative;
        z-index: 5;
    }
}

@media(max-width:991px) {

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

@media(max-width:576px) {

    .blog-grid {
        grid-template-columns: repeat(1,1fr);
    }
}

/*========================================
        Show Reel Responsive
=========================================*/

@media (max-width:991px) {

    .showreel-section {
        padding: 60px 0;
    }

    .showreel-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px 0;
    }

    .showreel-content {
        width: 100%;
    }

        .showreel-content h2 {
            font-size: 38px;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .showreel-content p {
            font-size: 16px;
            margin-bottom: 25px;
        }

    .reel-btn {
        margin: auto;
    }

    .showreel-video {
        width: 100%;
        height: 220px;
    }

    .video-play {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

@media (max-width:576px) {

    .showreel-content h2 {
        font-size: 32px;
    }

    .showreel-video {
        height: 190px;
    }

    .reel-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .footer {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

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

/* ---------- Thank-you popup ---------- */
.thank-you-box {
    text-align: center;
    padding: 44px 36px 36px;
}

.thank-you-illustration {
    max-width: 220px;
    margin: 0 auto;
}

    .thank-you-illustration svg {
        width: 100%;
        height: auto;
        display: block;
    }

.thank-you-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--red);
    margin-top: 16px;
}

.thank-you-sub {
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    margin-top: 10px;
}

.thank-you-desc {
    font-size: 13.5px;
    color: var(--stone);
    line-height: 1.7;
    margin-top: 10px;
}

    .thank-you-desc a {
        color: var(--red);
        border-bottom: 1px solid var(--red);
    }

.thank-you-follow {
    margin-top: 28px;
}

.follow-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 14px;
}

.follow-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.follow-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: transform 0.2s ease;
}

    .follow-icon:hover {
        transform: translateY(-3px);
    }

    .follow-icon.yt {
        background: #FF0000;
    }

    .follow-icon.ig {
        background: #fff;
        border: 2px solid #E1306C;
        color: #E1306C;
    }

    .follow-icon.wa {
        background: #25D366;
    }

/* ---------- Loader ---------- */
.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(18,16,17,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

    .loader-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(247,243,237,0.25);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}
.video-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .video-play-btn:hover {
        background: var(--red);
        border-color: var(--red);
    }

    .video-play-btn.hidden {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -50%) scale(0.8);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

.gallery-filters-wrap {
    position: relative;
}

.gallery-filters {
    display: flex;
    gap: 10px;
}

.gallery-filter-arrow {
    display: none;
}

@media (max-width: 900px) {

    .gallery-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-left: 40px;
        padding-right: 40px;
    }

        .gallery-filters::-webkit-scrollbar {
            display: none;
        }

        .gallery-filters button {
            flex: 0 0 auto;
            white-space: nowrap;
        }

    .gallery-filter-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: var(--ivory);
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        cursor: pointer;
        z-index: 10;
    }

    .gallery-filter-prev {
        left: 3px;
    }

    .gallery-filter-next {
        right: 3px;
    }

    .gallery-filter-arrow:disabled {
        opacity: 0.3;
        cursor: default;
    }
}