:root {
    --bg: #050505;
    --white: #ffffff;
    --text: rgba(255,255,255,.82);
    --muted: rgba(255,255,255,.60);
    --berry: #73224F;
    --pink: #BF2A8B;
    --purple: #6F5095;
    --indigo: #5967A4;
    --coral: #D95E52;
    --gold: #E6B85C;
    --cyan: #8fb2be;
    --grad-main: linear-gradient( 90deg, #f7b733, #f27a1a, #e94057, #c94b9f, #6a5acd, #3a7bd5 );
    --grad-accent: linear-gradient(135deg, var(--pink), var(--coral));
    --shadow: 0 20px 60px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at top left, rgba(191,42,139,.08), transparent 20%), radial-gradient(circle at top right, rgba(89,103,164,.08), transparent 18%), linear-gradient(180deg, #030303, #070312 35%, #050505 100%);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img, video {
    display: block;
    max-width: 100%;
}

.section-padding {
    padding: 110px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-subtitle {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text);
    line-height: 1.9;
    font-size: 1rem;
    max-width: 780px;
}

.gold-line {
    width: 110px;
    height: 3px;
    background: var(--grad-main);
    margin: 0 auto 28px;
    border-radius: 999px;
}

.btn-gold {
    background: var(--grad-accent);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 800;
    letter-spacing: .05em;
    transition: all .6s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 12px 30px rgba(191,42,139,.25);
}

    .btn-gold:hover {
        color: #fff;
        transform: translateY(-3px) scale(1.02);
        opacity: .95;
    }

.btn-outline-light.custom {
    border-radius: 999px;
    border-color: rgba(255,255,255,.25);
    color: var(--white);
    padding: 14px 26px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: all .6s cubic-bezier(.22,1,.36,1);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(8px);
}

    .btn-outline-light.custom:hover {
        background: #fff;
        color: #111;
        transform: translateY(-3px);
        opacity: .95;
    }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: all .4s ease;
    padding: 38px 0;
    background: rgba(4,3,12,.28);
    backdrop-filter: blur(8px);
}

    .site-header.scrolled {
        background: rgba(7,6,16,.94);
        backdrop-filter: blur(16px);
        box-shadow: 0 10px 30px rgba(0,0,0,.24);
        padding: 30px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    height: 30px;
    width: 148px;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    color: #fff;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 28px;
}

    .header-nav .nav-link {
        color: rgba(255,255,255,.88);
        font-size: .76rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .12em;
        padding: 0 !important;
        position: relative;
        transition: color .25s ease;
    }

        .header-nav .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            margin: auto;
            width: 0;
            height: 2px;
            background: var(--grad-main);
            transition: width .3s ease;
            border-radius: 999px;
        }

        .header-nav .nav-link:hover,
        .header-nav .nav-link.active {
            color: #fff;
        }

            .header-nav .nav-link:hover::after,
            .header-nav .nav-link.active::after {
                width: 100%;
            }

.header-social {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.28);
}

    .header-social a {
        color: #fff;
        font-size: 1.05rem;
        transition: all .6s cubic-bezier(.22,1,.36,1);
    }

        .header-social a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroVideoScale 8s ease forwards;
    filter: saturate(1.2) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(191,42,139,.28), transparent 30%), radial-gradient(circle at 80% 20%, rgba(89,103,164,.22), transparent 24%), linear-gradient(90deg, rgba(0,0,0,.84) 8%, rgba(0,0,0,.45) 46%, rgba(3,3,3,.82) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    inset: auto auto 8% 8%;
    width: 38vw;
    height: 38vw;
    max-width: 420px;
    max-height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,184,92,.22), rgba(191,42,139,.16), transparent 72%);
    filter: blur(20px);
    z-index: 1;
    animation: floatGlow 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-copy-side {
    padding-right: 42px;
}

.hero-kicker {
    color: var(--cyan);
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .28em;
    font-weight: 700;
    margin-bottom: 18px;
    animation: fadeUp 1s ease both;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: .95;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 22px;
    max-width: 920px;
    min-height: 1.9em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #fff 10%, var(--gold) 25%, var(--pink) 52%, var(--purple) 72%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

    .hero-title-line .char {
        display: inline-block;
        opacity: 0;
        transform: translateY(32px) scale(.96);
        filter: blur(8px);
        animation: titleCharReveal .75s cubic-bezier(.2,.8,.2,1) forwards;
    }

        .hero-title-line .char.space {
            width: .3em;
        }

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: .9em;
    margin-inline-start: 10px;
    background: var(--grad-main);
    vertical-align: middle;
    box-shadow: 0 0 18px rgba(230,184,92,.7);
    animation: blinkCursor .9s steps(1) infinite;
}

.hero-side-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,.12);
    animation: fadeUp 1s ease .55s both;
}

.hero-side-caption {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-side-info p {
    max-width: 360px;
    color: rgba(255,255,255,.82);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0 0 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 1s ease 1.1s both;
}

.hero-social {
    position: absolute;
    right: 32px;
    bottom: 36px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .hero-social a {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.16);
        color: #fff;
        background: rgba(255,255,255,.05);
        transition: all .6s cubic-bezier(.22,1,.36,1);
        backdrop-filter: blur(10px);
    }

        .hero-social a:hover {
            transform: translateY(-4px);
            border-color: var(--pink);
            color: var(--pink);
            background: rgba(191,42,139,.10);
        }

.hero-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 42px;
    height: 12px;
    border-radius: 999px;
    background: var(--grad-main);
    border: 0;
}

.floating-stats {
    margin-top: -68px;
    position: relative;
    z-index: 12;
}

.stat-card {
    background: linear-gradient(180deg, rgba(21,15,34,.88), rgba(9,9,16,.92));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all .6s cubic-bezier(.22,1,.36,1);
    backdrop-filter: blur(12px);
}

    .stat-card:hover {
        transform: translateY(-8px);
        border-color: rgba(191,42,139,.45);
    }

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .85rem;
    font-weight: 600;
}

.dark-section {
    background: linear-gradient(180deg, #090909, #090414 45%, #090909);
}

.about-art-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 540px;
    background: radial-gradient(circle at top left, rgba(191,42,139,.12), transparent 28%), radial-gradient(circle at bottom right, rgba(89,103,164,.10), transparent 26%), linear-gradient(180deg, rgba(13,13,18,.95), rgba(6,6,8,.98));
    border: 1px solid rgba(255,255,255,.08);
    isolation: isolate;
}

.about-hero-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    animation: aboutZoomEffect 5s infinite alternate ease-in-out;
    transition: all .7s cubic-bezier(.22,1,.36,1);
}

.about-hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
    animation: scanlines 4s linear infinite;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

.about-hero-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.64) 100%), radial-gradient(circle at 18% 18%, rgba(191,42,139,.18), transparent 26%), radial-gradient(circle at 85% 22%, rgba(89,103,164,.16), transparent 24%);
    z-index: 1;
    pointer-events: none;
}

.about-hero-wrap:hover .about-hero-image {
    transform: scale(1.1) skewX(1deg);
    filter: contrast(120%) brightness(90%);
}

.about-image-overlay {
    position: absolute;
    left: 5%;
    bottom: 5%;
    max-width: 500px;
    z-index: 3;
    padding-right: 18px;
}

    .about-image-overlay h3 {
        font-size: clamp(2rem, 4.2vw, 3.2rem);
        margin-bottom: 14px;
        line-height: 1.15;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
    }

    .about-image-overlay p {
        font-size: 1rem;
        opacity: .88;
        line-height: 1.8;
        color: rgba(255,255,255,.92);
        margin: 0;
        max-width: 420px;
    }

.image-badge {
    position: absolute;
    z-index: 3;
    left: 28px;
    bottom: 28px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(0,0,0,.48);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.location-pill {
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    font-size: .92rem;
    font-weight: 600;
    transition: all .6s cubic-bezier(.22,1,.36,1);
    backdrop-filter: blur(10px);
}

    .location-pill:hover {
        border-color: var(--pink);
        transform: translateY(-3px);
        background: rgba(191,42,139,.18);
    }

/* =========================
       PORTFOLIO
    ========================= */
/* =========================
   PORTFOLIO PREMIUM SECTION
========================= */
.portfolio-section {
    position: relative;
    background: radial-gradient(circle at top left, rgba(191,42,139,.10), transparent 20%), radial-gradient(circle at bottom right, rgba(89,103,164,.10), transparent 18%), linear-gradient(180deg, #08080b, #090414 48%, #050505 100%);
    overflow: hidden;
    padding-top: 40px;
}

    .portfolio-section::before {
        content: '';
        position: absolute;
        right: -90px;
        top: 50px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(217,94,82,.12), rgba(191,42,139,.08), transparent 72%);
        filter: blur(18px);
        pointer-events: none;
    }

    .portfolio-section .container {
        position: relative;
        z-index: 1;
    }

.portfolio-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0 46px;
}

.portfolio-pill {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.84);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 12px 18px;
    border-radius: 999px;
    transition: all .35s ease;
    backdrop-filter: blur(8px);
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

    .portfolio-pill.active,
    .portfolio-pill:hover {
        background: var(--grad-accent);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 10px 24px rgba(191,42,139,.22);
        transform: translateY(-1px);
    }

.portfolio-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.portfolio-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(21,15,34,.88), rgba(9,9,16,.96));
    box-shadow: var(--shadow);
    min-height: 340px;
    transition: transform .55s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease, opacity .45s ease, filter .45s ease;
    will-change: transform, opacity;
}

    .portfolio-project-card:hover {
        transform: translateY(-8px);
        border-color: rgba(191,42,139,.28);
        box-shadow: 0 24px 60px rgba(191,42,139,.14);
    }

    .portfolio-project-card.is-filtered-out {
        opacity: 0;
        transform: scale(.95) translateY(12px);
        pointer-events: none;
        filter: blur(3px);
    }

    .portfolio-project-card.is-hidden {
        display: none !important;
    }

.portfolio-project-cover {
    position: relative;
    height: 340px;
    overflow: hidden;
}

    .portfolio-project-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s cubic-bezier(.22,1,.36,1), filter .45s ease;
    }

.portfolio-project-card:hover .portfolio-project-cover img {
    transform: scale(1.08);
}

.portfolio-project-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(160,160,170,.10);
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
}

.portfolio-project-card:hover .portfolio-project-cover::after {
    opacity: 1;
}

.portfolio-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.42) 100%);
    opacity: 0;
    transition: opacity .45s ease, transform .45s ease;
}

    .portfolio-hover-overlay h5 {
        margin: 0;
        color: #fff;
        font-size: 1rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .05em;
        transform: translateY(16px);
        transition: transform .45s ease;
    }

.portfolio-project-card:hover .portfolio-hover-overlay {
    opacity: 1;
}

    .portfolio-project-card:hover .portfolio-hover-overlay h5 {
        transform: translateY(0);
    }

.portfolio-project-body {
    display: none;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.portfolio-count {
    color: var(--gold);
    font-weight: 700;
    font-size: .88rem;
    white-space: nowrap;
}

.portfolio-open-btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 17px;
    font-weight: 800;
    letter-spacing: .04em;
    font-size: .8rem;
    color: #fff;
    background: var(--grad-accent);
    transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
    box-shadow: 0 10px 24px rgba(191,42,139,.16);
}

    .portfolio-open-btn:hover {
        transform: translateY(-2px);
        opacity: .96;
        box-shadow: 0 16px 30px rgba(191,42,139,.20);
    }

.portfolio-project-cover.portfolio-open-btn {
    border: 0;
    padding: 0;
    width: 100%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: block;
    text-align: unset;
}
/* =========================
   MODAL
========================= */
.portfolio-modal {
    position: fixed;
    inset: 0;
    background: rgba(3,3,7,.78);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .portfolio-modal.show {
        display: flex;
    }

.portfolio-modal-box {
    width: min(1180px, 100%);
    max-height: 92vh;
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(17,12,26,.98), rgba(7,7,12,.98));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.portfolio-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 8px;
}

    .portfolio-modal-head h3 {
        margin: 0;
        font-size: clamp(1.15rem, 2vw, 2rem);
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: .05em;
    }

.portfolio-hover-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .portfolio-hover-overlay h5 {
        margin: 0;
    }

    .portfolio-hover-overlay p {
        margin-top: 8px;
        font-size: 14px;
        opacity: 0.8;
    }

.portfolio-modal-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    font-size: 1.2rem;
}

.portfolio-modal-body {
    padding: 18px 24px 26px;
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #121212;
    min-height: 220px;
}

    .portfolio-gallery-item img {
        width: 100%;
        height: 100%;
        max-height: 220px;
        object-fit: cover;
        transition: transform .55s cubic-bezier(.22,1,.36,1);
    }

    .portfolio-gallery-item:hover img {
        transform: scale(1.06);
    }

@media (max-width: 1199.98px) {
    .portfolio-project-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .portfolio-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .portfolio-project-grid,
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-project-body p {
        min-height: auto;
    }

    .portfolio-filter-wrap {
        gap: 10px;
    }

    .portfolio-pill {
        font-size: .82rem;
        padding: 10px 15px;
    }
}
/* =========================
       SERVICES STRIP
    ========================= */
.services-showcase {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.services-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

    .services-shape .shape-path-glow,
    .services-shape .shape-path-main {
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: var(--path-length, 5000);
        stroke-dashoffset: var(--path-length, 5000);
        opacity: 0;
    }

    .services-shape .shape-path-glow {
        stroke: rgba(180, 180, 190, 0.08);
        stroke-width: 12;
        filter: blur(4px);
        animation: drawEraseSingle 9s ease-in-out infinite;
    }

    .services-shape .shape-path-main {
        stroke: rgba(150, 150, 160, 0.22);
        stroke-width: 12;
        animation: drawEraseSingle 9s ease-in-out infinite;
    }

@keyframes drawEraseSingle {
    0% {
        stroke-dashoffset: var(--path-length, 5000);
        opacity: 0;
    }

    12% {
        stroke-dashoffset: var(--path-length, 5000);
        opacity: 0;
    }

    42% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    58% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: calc(var(--path-length, 5000) * -1);
        opacity: 0;
    }
}

.services-showcase .container {
    position: relative;
    z-index: 1;
}

.services-strip-wrap {
    position: relative;
    margin-top: 42px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(18,15,26,.88), rgba(10,10,16,.96));
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 22px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

    .services-strip-wrap::before,
    .services-strip-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .services-strip-wrap::before {
        left: 0;
        background: linear-gradient(90deg, rgba(9,9,14,1), rgba(9,9,14,0));
    }

    .services-strip-wrap::after {
        right: 0;
        background: linear-gradient(270deg, rgba(9,9,14,1), rgba(9,9,14,0));
    }

.services-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: servicesMarquee 26s linear infinite;
}


.services-strip-wrap:hover .services-strip-track {
    animation-play-state: paused;
}

.service-icon-card {
    flex: 0 0 auto;
    width: 270px;
    min-height: 150px;
    margin: 0 12px;
    padding: 22px 16px 20px;
    text-align: center;
    transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease;
}

    .service-icon-card:hover {
        transform: translateY(-8px);
    }

.service-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-size: 1.45rem;
    color: #fff;
    background: var(--grad-accent);
    box-shadow: 0 12px 30px rgba(191,42,139,.22);
}

.service-icon-card h5 {
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.5;
}

.service-icon-card p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.7;
    color: rgba(255,255,255,.70);
}

/* =========================
       CONTACT
    ========================= */
.cta-section {
    position: relative;
    background: linear-gradient(180deg, #0a0a12, #07050e 70%, #050505 100%);
    overflow: hidden;
}

.contact-composition {
    position: relative;
    min-height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.08);
    background: #0b0b13;
}

.contact-middle-image {
    position: absolute;
    inset: 0;
}

    .contact-middle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.38) saturate(1.1);
        transform: scale(1.03);
    }

.contact-composition::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(191,42,139,.24), transparent 25%), linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.38), rgba(5,5,5,.72));
    z-index: 1;
}

.contact-copy {
    position: absolute;
    left: 7%;
    top: 10%;
    transform: translateY(-50%);
    max-width: 420px;
    z-index: 2;
}

    .contact-copy h2 {
        font-size: clamp(2.3rem, 4vw, 3.6rem);
        line-height: 1.08;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .contact-copy p {
        color: rgba(255,255,255,.82);
        line-height: 1.9;
        margin-bottom: 24px;
    }

.contact-form-panel {
    position: absolute;
    right: 6%;
    top: 8%;
    transform: translateY(-50%);
    width: min(100%, 500px);
    background: rgba(7,7,10,.76);
    padding: 42px 34px 44px;
    color: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 22px 40px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.08);
    z-index: 2;
    border-radius: 26px;
}

    .contact-form-panel h3 {
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 28px;
        color: #fff;
    }

.booking-form .form-control,
.booking-form textarea {
    border-radius: 16px;
    min-height: 60px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    margin-bottom: 18px;
    padding: 16px 18px;
    color: #fff;
    font-size: .98rem;
    box-shadow: none;
}

.booking-form textarea {
    min-height: 130px;
    resize: vertical;
}

    .booking-form .form-control::placeholder,
    .booking-form textarea::placeholder {
        color: rgba(255,255,255,.62);
        letter-spacing: .04em;
    }

.register-btn {
    background: var(--grad-accent);
    color: #fff;
    border: 0;
    padding: 14px 28px;
    min-width: 178px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: all .6s cubic-bezier(.22,1,.36,1);
    border-radius: 999px;
}

    .register-btn:hover {
        transform: translateY(-2px);
        opacity: .95;
    }

.footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    background: #040404;
}

    .footer p,
    .footer a {
        color: rgba(255,255,255,.62);
        margin-bottom: 0;
        font-size: .92rem;
    }

        .footer a:hover {
            color: var(--pink);
        }

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .85s ease, transform .85s ease;
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

    .reveal.show,
    .reveal-left.show,
    .reveal-right.show {
        opacity: 1;
        transform: translate(0,0);
    }

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

.delay-4 {
    transition-delay: .32s;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(13,13,13,.92);
    color: var(--gold);
    display: grid;
    place-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .6s cubic-bezier(.22,1,.36,1);
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

/* =========================
       MODAL
    ========================= */
.portfolio-modal {
    position: fixed;
    inset: 0;
    background: rgba(3,3,7,.76);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .portfolio-modal.show {
        display: flex;
    }

.portfolio-modal-box {
    width: min(1180px, 100%);
    max-height: 92vh;
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(17,12,26,.98), rgba(7,7,12,.98));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.portfolio-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 8px;
}

    .portfolio-modal-head h3 {
        margin: 0;
        font-size: clamp(1.2rem, 2vw, 2rem);
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: .05em;
    }

.portfolio-modal-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    font-size: 1.2rem;
}

.portfolio-modal-body {
    padding: 18px 24px 26px;
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #121212;
    min-height: 220px;
}

    .portfolio-gallery-item img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        transition: transform .55s cubic-bezier(.22,1,.36,1);
    }

    .portfolio-gallery-item:hover img {
        transform: scale(1.06);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleCharReveal {
    0% {
        opacity: 0;
        transform: translateY(38px) scale(.94);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes blinkCursor {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}

@keyframes heroVideoScale {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }
}

@keyframes aboutZoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-14px) translateX(10px);
    }
}

@keyframes servicesMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes drawErasePath {
    0% {
        stroke-dashoffset: var(--path-length, 5000);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    55% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: calc(var(--path-length, 5000) * -1);
        opacity: 0.96;
    }
}

@media (max-width: 1199.98px) {
    .portfolio-project-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .header-shell {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
    }

    .header-nav {
        gap: 8px 12px;
    }

    .hero-copy-side {
        padding-right: 12px;
    }

    .hero-side-info {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
        margin-top: 28px;
        padding-top: 24px;
    }

    .hero-social {
        display: none;
    }

    .floating-stats {
        margin-top: 0;
        padding-top: 24px;
    }

    .section-padding {
        padding: 90px 0;
    }

    .about-art-wrap,
    .about-hero-wrap,
    .about-hero-image {
        min-height: 450px;
    }

    .portfolio-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-copy {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        padding: 38px 26px 0;
        z-index: 2;
    }

    .contact-form-panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 26px;
        width: auto;
    }

    .contact-composition {
        min-height: auto;
        padding-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: .12em;
    }

    .header-nav .nav-link {
        font-size: .62rem;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .hero-side-info p,
    .section-desc,
    .about-image-overlay p,
    .contact-copy p {
        font-size: .96rem;
    }

    .about-art-wrap,
    .about-hero-wrap,
    .about-hero-image {
        min-height: 360px;
    }

    .portfolio-project-grid,
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-project-body p {
        min-height: auto;
    }

    .contact-form-panel {
        padding: 30px 22px 32px;
        margin: 20px;
    }

    .services-strip-wrap {
        padding: 18px 0;
        border-radius: 22px;
    }

        .services-strip-wrap::before,
        .services-strip-wrap::after {
            width: 60px;
        }

    .service-icon-card {
        width: 160px;
        min-height: 138px;
        margin: 0 8px;
        padding: 18px 14px;
    }

    .service-icon-circle {
        width: 62px;
        height: 62px;
        font-size: 1.2rem;
    }

    .service-icon-card h5 {
        font-size: .82rem;
    }

    .service-icon-card p {
        font-size: .76rem;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
    /* path */
    .about-shape path {
        stroke-dasharray: var(--len, 1200);
        stroke-dashoffset: var(--len, 1200);
        opacity: 0;
    }

#aboutPath {
    animation: drawAbout 6s ease-in-out infinite;
}

.about-glow {
    filter: blur(4px);
    animation: drawAbout 6s ease-in-out infinite;
}

@keyframes drawAbout {
    0% {
        stroke-dashoffset: var(--len);
        opacity: 0;
    }

    15% {
        opacity: 0;
    }

    45% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    65% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: calc(var(--len) * -1);
        opacity: 0;
    }
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.card {
    width: 250px;
    height: 190px;
    padding: 6px;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
    background: var(--grad-main); /* main brand gradient */
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

    .card::before,
    .card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 1rem;
        z-index: -1;
        transition: 0.3s ease;
    }

    /* layered cards using your palette */
    .card::before {
        background: linear-gradient(135deg, var(--pink), var(--coral));
        transform: rotate(3deg);
    }

    .card::after {
        background: linear-gradient(135deg, var(--purple), var(--indigo));
        transform: rotate(-3deg);
    }

.card-info {
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    overflow: hidden;
    position: relative;
}

    .card-info img {
        width: 70%;
        height: auto;
        object-fit: contain;
        transition: 0.3s ease;
    }

.card:hover {
    transform: translateY(-8px) scale(1.05);
}

    .card:hover::before,
    .card:hover::after {
        opacity: 0;
    }

    .card:hover .card-info img {
        transform: scale(1.1);
    }

.dark-section {
    position: relative;
    overflow: hidden;
}

.about-decor-left {
    position: absolute;
    bottom: -50px;
    left: -318px;
    transform: scaleX(-1);
    width: 450px;
    opacity: 0.9;
    pointer-events: none;
}

#portfolio {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(191, 42, 139, 0.08), transparent 22%), radial-gradient(circle at 85% 15%, rgba(230, 184, 92, 0.08), transparent 20%), radial-gradient(circle at 50% 85%, rgba(111, 80, 149, 0.08), transparent 25%), var(--bg);
}

    #portfolio .container {
        position: relative;
        z-index: 2;
    }

.portfolio-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

    .portfolio-stars .star {
        position: absolute;
        display: block;
        width: 34px;
        height: 34px;
        opacity: 0.22;
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.06));
        animation: floatStar 8s ease-in-out infinite, twinkleStar 4s ease-in-out infinite;
    }

        .portfolio-stars .star::before {
            content: "";
            position: absolute;
            inset: 0;
            background: currentColor;
            clip-path: polygon( 50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35% );
        }

        .portfolio-stars .star::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            right: -4px;
            top: 4px;
            background: currentColor;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            opacity: 0.85;
        }

    .portfolio-stars .s1 {
        top: 7%;
        left: 6%;
        color: var(--gold);
        transform: rotate(12deg) scale(1.1);
        animation-delay: 0s, .4s;
    }

    .portfolio-stars .s2 {
        top: 14%;
        left: 22%;
        color: var(--pink);
        transform: rotate(-8deg) scale(.7);
        animation-delay: 1s, 1.3s;
    }

    .portfolio-stars .s3 {
        top: 10%;
        right: 10%;
        color: var(--cyan);
        transform: rotate(18deg) scale(.95);
        animation-delay: 2s, .7s;
    }

    .portfolio-stars .s4 {
        top: 28%;
        left: 12%;
        color: var(--purple);
        transform: rotate(-15deg) scale(.85);
        animation-delay: 1.5s, 1.8s;
    }

    .portfolio-stars .s5 {
        top: 38%;
        right: 6%;
        color: var(--gold);
        transform: rotate(10deg) scale(1.2);
        animation-delay: .8s, 2.2s;
    }

    .portfolio-stars .s6 {
        top: 52%;
        left: 4%;
        color: var(--coral);
        transform: rotate(-12deg) scale(.75);
        animation-delay: 2.6s, 1.2s;
    }

    .portfolio-stars .s7 {
        top: 60%;
        left: 18%;
        color: var(--indigo);
        transform: rotate(16deg) scale(1);
        animation-delay: .3s, 2.5s;
    }

    .portfolio-stars .s8 {
        top: 66%;
        right: 18%;
        color: var(--pink);
        transform: rotate(-10deg) scale(.9);
        animation-delay: 1.7s, .9s;
    }

    .portfolio-stars .s9 {
        top: 78%;
        left: 10%;
        color: var(--gold);
        transform: rotate(22deg) scale(.65);
        animation-delay: 2.8s, 1.6s;
    }

    .portfolio-stars .s10 {
        top: 82%;
        right: 8%;
        color: var(--purple);
        transform: rotate(-18deg) scale(1.05);
        animation-delay: .6s, 2.8s;
    }

    .portfolio-stars .s11 {
        top: 44%;
        left: 48%;
        color: var(--cyan);
        transform: rotate(14deg) scale(.8);
        animation-delay: 1.1s, .5s;
    }

    .portfolio-stars .s12 {
        top: 20%;
        right: 36%;
        color: var(--coral);
        transform: rotate(-6deg) scale(.7);
        animation-delay: 2.2s, 1.1s;
    }

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-10px) rotate(6deg) scale(1.06);
    }
}

@keyframes twinkleStar {
    0%, 100% {
        opacity: 0.14;
        filter: drop-shadow(0 0 4px currentColor);
    }

    50% {
        opacity: 0.32;
        filter: drop-shadow(0 0 12px currentColor);
    }
}

.image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

    .image-viewer img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
    }

#closeViewer {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.copyrights {
    color: #fff;
    text-align: center;
}

    .copyrights span {
        font-size: 13px;
        letter-spacing: 1px;
    }

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-decoration-none {
    text-decoration: none !important;
}
@font-face {
    font-family: 'BauhausCustom';
    src: url('./fonts/Bauhaus93.ttf') format('truetype');
}

.sofcoFont {
    color: #337ab7 !important;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 14.4px !important;
    font-family: 'BauhausCustom', sans-serif !important;
}
/* =========================================================
   RESPONSIVE CLEANUP - FILTER REMOVED
   ========================================================= */

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 1.45rem;
    place-items: center;
    cursor: pointer;
    transition: all .3s ease;
}

    .menu-toggle:hover {
        background: rgba(191,42,139,.18);
        border-color: rgba(191,42,139,.5);
    }

.portfolio-filter-wrap,
.portfolio-pill {
    display: none !important;
}

.portfolio-project-card.is-filtered-out,
.portfolio-project-card.is-hidden {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
}

.portfolio-project-cover {
    border: 0;
    width: 100%;
}

.contact-info p {
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

@media (max-width: 1199.98px) {
    .site-header {
        padding: 26px 0;
    }

        .site-header.scrolled {
            padding: 20px 0;
        }

    .portfolio-project-card,
    .portfolio-project-cover {
        min-height: 300px;
        height: 300px;
    }

    .service-icon-card {
        width: 235px;
    }

    .card {
        width: 220px;
        height: 170px;
    }
}

@media (max-width: 991.98px) {
    .site-header,
    .site-header.scrolled {
        padding: 16px 0;
    }

    .header-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 14px;
    }

    .menu-toggle {
        display: grid;
    }

    .header-nav {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 14px;
        border-radius: 20px;
        background: rgba(7,6,16,.97);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 22px 50px rgba(0,0,0,.35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all .3s ease;
    }

        .header-nav.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-nav .nav-link {
            width: 100%;
            padding: 13px 12px !important;
            border-radius: 14px;
            text-align: center;
            font-size: .78rem;
        }

            .header-nav .nav-link::after {
                display: none;
            }

            .header-nav .nav-link:hover,
            .header-nav .nav-link.active {
                background: rgba(255,255,255,.07);
            }

    .main-title {
        width: 142px;
        height: auto;
    }

    .hero {
        min-height: 78vh;
    }

    .section-padding {
        padding: 76px 0;
    }

    .about-shape,
    .services-shape {
        opacity: .55;
    }

    .about-art-wrap,
    .about-hero-wrap,
    .about-hero-image {
        min-height: 420px;
    }

    .portfolio-project-card,
    .portfolio-project-cover {
        min-height: 320px;
        height: 320px;
    }

    .contact-composition {
        display: grid;
        min-height: auto;
    }

    .contact-middle-image {
        position: absolute;
    }

    .contact-copy,
    .contact-form-panel {
        position: relative;
        transform: none;
        inset: auto;
    }

    .contact-copy {
        padding: 46px 28px 0;
    }

    .contact-form-panel {
        width: auto;
        margin: 26px;
    }
}

@media (max-width: 767.98px) {
    .container {
        width: min(100% - 28px, 540px);
    }

    .section-padding {
        padding: 64px 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 9vw, 2.7rem);
        letter-spacing: .04em;
    }

    .section-desc {
        line-height: 1.75;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-video {
        transform: none;
    }

    .hero-overlay {
        background: radial-gradient(circle at 20% 30%, rgba(191,42,139,.22), transparent 30%), linear-gradient(180deg, rgba(0,0,0,.54), rgba(0,0,0,.78));
    }

    .hero-social {
        display: flex;
        right: 18px;
        bottom: 20px;
        flex-direction: row;
    }

        .hero-social a {
            width: 42px;
            height: 42px;
        }

    .about-art-wrap,
    .about-hero-wrap,
    .about-hero-image {
        min-height: 330px;
    }

    .about-image-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

        .about-image-overlay h3 {
            font-size: 1.65rem;
        }

    .portfolio-section {
        padding-top: 58px;
    }

    .portfolio-project-grid,
    .portfolio-gallery-grid {
        gap: 18px;
    }

    .portfolio-project-card,
    .portfolio-project-cover {
        min-height: 280px;
        height: 280px;
        border-radius: 22px;
    }

    .portfolio-hover-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.62) 100%);
    }

        .portfolio-hover-overlay h5 {
            transform: none;
        }

    .portfolio-modal {
        padding: 14px;
    }

    .portfolio-modal-head {
        padding: 18px 18px 6px;
    }

    .portfolio-modal-body {
        padding: 14px 18px 20px;
    }

    .portfolio-modal-close {
        width: 42px;
        height: 42px;
    }

    .portfolio-gallery-item,
    .portfolio-gallery-item img {
        min-height: 240px;
        max-height: none;
    }

    .services-strip-wrap {
        width: 100%;
        margin-left: 0;
    }

    .service-icon-card {
        width: 170px;
    }

    .card {
        width: 155px;
        height: 130px;
    }

    .contact-copy {
        padding: 34px 20px 0;
    }

        .contact-copy h2 {
            font-size: clamp(1.75rem, 9vw, 2.55rem);
        }

    .contact-form-panel {
        margin: 20px;
        padding: 28px 18px 30px;
        border-radius: 22px;
    }

        .contact-form-panel h3 {
            font-size: 1.45rem;
        }

    .booking-form .form-control,
    .booking-form textarea {
        min-height: 54px;
        border-radius: 14px;
    }

    #closeViewer {
        top: 16px;
        right: 22px;
        font-size: 34px;
    }

    .image-viewer img {
        max-width: 94%;
        max-height: 84%;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 22px, 100%);
    }

    .main-title {
        width: 124px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .header-nav {
        left: 10px;
        right: 10px;
    }

    .hero {
        min-height: 64vh;
    }

    .gold-line {
        width: 86px;
        margin-bottom: 22px;
    }

    .about-art-wrap,
    .about-hero-wrap,
    .about-hero-image {
        min-height: 285px;
    }

    .portfolio-project-card,
    .portfolio-project-cover {
        min-height: 245px;
        height: 245px;
    }

    .portfolio-hover-overlay {
        padding: 18px 14px;
    }

        .portfolio-hover-overlay h5 {
            font-size: .88rem;
        }

        .portfolio-hover-overlay p {
            font-size: 12px;
        }

    .contact-form-panel {
        margin: 16px;
    }

    .footer p,
    .footer a {
        font-size: .82rem;
    }
}

.portfolio-gallery-item {
    position: relative;
    border-radius: 20px;
    padding: 2px; /* thickness of border */
    background: var(--grad-main);
}

    /* inner container */
    .portfolio-gallery-item img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 18px; /* slightly smaller than parent */
        object-fit: cover;
        background: #000;
    }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
    transition: 0.3s;
}

    .contact-box:hover {
        transform: translateX(8px);
        border-color: var(--pink);
    }

/* ICON STYLE */
.contact-icon {
    font-size: 20px;
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    /* YOUR BRAND GRADIENT */
    background: var(--grad-main);
    color: #fff;
    box-shadow: 0 6px 18px rgba(191,42,139,.25);
    transition: 0.3s;
}

.contact-box:hover .contact-icon {
    transform: scale(1.1);
}

/* TEXT STYLE */
.contact-box h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.contact-box p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--muted);
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

    .hero-slider .slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1);
        transition: opacity 1.5s ease-in-out;
        animation: zoomEffect 10s ease-in-out infinite alternate;
    }

        .hero-slider .slide.active {
            opacity: 1;
        }

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.card-info {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .card-info img {
        width: 100%;
        display: block;
        transition: 0.4s;
    }

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.8) );
    opacity: 0;
    transition: 0.4s;
}

    .card-overlay h5 {
        color: #fff;
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        transform: translateY(70px);
        transition: 0.4s;
    }

.service-icon-card:hover .card-overlay {
    opacity: 1;
}

    .service-icon-card:hover .card-overlay h5 {
        transform: translateY(0);
    }