    :root {
        --red-primary: #B31217;
        --red-dark: #7A0B0E;
        --red-deep: #3D0304;
        --off-white: #F5F2EE;
        --warm-gray: #E8E3DC;
        --text-dark: #1A1A1A;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--off-white);
        color: var(--text-dark);
        overflow-x: hidden;
    }

    .font-display {
        font-family: 'Bebas Neue', cursive;
    }

    .font-serif {
        font-family: 'Playfair Display', serif;
    }

    #navbar {
        transition: background .35s ease, box-shadow .35s ease;
    }

    #navbar.scrolled {
        background: rgba(20, 20, 20, .97) !important;
        box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
    }

    .nav-link {
        position: relative;
        padding-bottom: 2px;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--red-primary);
        transition: width .3s ease;
    }

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

    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    #mobile-menu.open {
        max-height: 500px;
    }

    html,
    body {
        height: 100%;
    }

    .hero-section {
        position: relative;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #0a0a0a;
    }

    .hero-video-wrap {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-video-wrap video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: .42;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        /* background: linear-gradient(105deg, rgba(71, 36, 36, 0.88) 0%, rgba(153, 45, 48, 0.55) 0%); */
    }

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

    .hero-headline {
        font-family: 'Bebas Neue', cursive;
        font-size: clamp(3.5rem, 10vw, 8.5rem);
        line-height: .9;
        letter-spacing: .01em;
    }

    .hero-sub {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: rgba(255, 255, 255, .72);
    }

    .logo-carousel {
        overflow: hidden;
        position: relative;
        -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }

    .logo-track {
        display: flex;
        width: max-content;
        animation: scroll-logos 38s linear infinite;
    }

    .logo-track.reverse {
        animation-direction: reverse;
        animation-duration: 44s;
    }

    .logo-carousel:hover .logo-track {
        animation-play-state: paused;
    }

    .logo-slide {
        flex: 0 0 auto;
        width: 168px;
        height: 84px;
        margin: 0 10px;
        background: #fff;
        border: 1px solid #ececea;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        transition: border-color .25s, box-shadow .25s;
    }

    .logo-slide:hover {
        border-color: #f0c3c4;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    }

    .logo-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }


    .logo-slide .logo-fallback {
        color: #6b7280;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .03em;
        text-align: center;
        line-height: 1.25;
        display: none;
    }

    @keyframes scroll-logos {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .logo-track {
            animation: none;
        }
    }

    .red-rule {
        width: 64px;
        height: 4px;
        background: var(--red-primary);
        margin-bottom: 1.5rem;
    }

    .svc-tab {
        cursor: pointer;
        transition: all .25s;
        border-bottom: 3px solid transparent;
    }

    .svc-tab.active {
        border-color: var(--red-primary);
        color: #1a1a1a;
    }

    .svc-panel {
        display: none;
    }

    .svc-panel.active {
        display: grid;
    }

    /* ---------- Service cards ---------- */
    .svc-card {
        background: #fff;
        border-radius: 1rem;
        overflow: hidden;
        border: 1px solid #ececea;
        transition: transform .35s ease, box-shadow .35s ease;
        display: flex;
        flex-direction: column;
    }

    .svc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -12px rgba(20, 10, 10, .16);
    }

    .svc-card--flat {
        justify-content: flex-start;
    }

    .svc-card-media {
        position: relative;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #f7f5f2;
    }

    .svc-card-media--icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #fbf4f3, #f7f5f2);
    }

    .svc-card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .svc-card:hover .svc-card-img {
        transform: scale(1.06);
    }

    .svc-chip {
        font-size: .7rem;
        background: #fbeaea;
        color: var(--red-primary);
        padding: .15rem .55rem;
        border-radius: 999px;
        font-weight: 600;
    }

    .svc-learn-more {
        display: inline-flex;
        align-items: center;
        gap: .3rem;
        color: var(--red-primary);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        transition: gap .25s ease;
    }

    .svc-card:hover .svc-learn-more {
        gap: .55rem;
    }

    .featured-carousel {
        position: relative;
    }

    .featured-track {
        display: flex;
        transition: transform .6s cubic-bezier(.65, 0, .35, 1);
        touch-action: pan-y;
        border-radius: 1.5rem;
        gap: 20px;
    }

    .featured-slide {
        flex: 0 0 100%;
        min-width: 0;
    }

    .featured-frame {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 1.5rem;
        overflow: hidden;
        background: #111;
    }

    @media(min-width:768px) {
        .featured-frame {
            aspect-ratio: 21 / 9;
        }
    }

    .featured-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
    }

    .featured-img--light {
        object-position: center 15%;
    }

    .featured-scrim {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10, 5, 5, .92) 0%, rgba(10, 5, 5, .35) 45%, rgba(10, 5, 5, 0) 75%);
    }

    .featured-copy {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1.75rem;
    }

    @media(min-width:768px) {
        .featured-copy {
            padding: 3rem;
        }
    }

    .featured-cta {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        background: var(--red-primary);
        color: #fff;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: .85rem 1.5rem;
        border-radius: .5rem;
        transition: background-color .25s ease;
    }

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

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .92);
        color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
        transition: background-color .25s ease, color .25s ease, transform .25s ease;
        z-index: 5;
    }

    .carousel-arrow:hover {
        background: var(--red-primary);
        color: #fff;
    }

    .carousel-prev {
        left: 14px;
    }

    .carousel-next {
        right: 14px;
    }

    @media(min-width:768px) {
        .carousel-prev {
            left: 22px;
        }

        .carousel-next {
            right: 22px;
        }
    }

    .carousel-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #ddd6cc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all .3s ease;
    }

    .carousel-dot.active {
        width: 30px;
        background: var(--red-primary);
    }

    .pf-filter {
        cursor: pointer;
        transition: all .25s;
    }

    .pf-filter.active {
        background: var(--red-primary);
        color: #fff;
        border-color: var(--red-primary);
    }

    .pf-card {
        transition: opacity .4s, transform .4s;
    }

    .pf-card.hidden-card {
        opacity: 0;
        transform: scale(.94);
        pointer-events: none;
        position: absolute;
    }

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

    @media(min-width:640px) {
        .portfolio-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(min-width:1024px) {
        .portfolio-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(min-width:1280px) {
        .portfolio-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .pf-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border-radius: 1rem;
        aspect-ratio: 4 / 5;
    }

    .pf-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .pf-item:hover .pf-img {
        transform: scale(1.09);
    }

    .pf-scrim {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .05) 55%, rgba(0, 0, 0, 0) 75%);
        transition: opacity .3s ease;
    }

    .pf-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 18px;
        z-index: 1;
    }

    .pf-hover {
        position: absolute;
        inset: 0;
        background: rgba(179, 18, 23, .92);
        opacity: 0;
        transition: opacity .35s;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px;
        text-align: center;
        z-index: 2;
    }

    .pf-item:hover .pf-hover {
        opacity: 1;
    }

    .pf-item:hover .pf-scrim {
        opacity: 0;
    }

    .pf-view {
        display: inline-block;
        margin-top: .5rem;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .5);
        padding: .55rem 1.1rem;
        border-radius: 999px;
        transition: border-color .25s ease;
    }

    .pf-item:hover .pf-view {
        border-color: #fff;
    }

    .value-pill {
        border: 2px solid rgba(255, 255, 255, .2);
        transition: all .3s;
    }

    .value-pill:hover {
        border-color: var(--red-primary);
        background: var(--red-primary);
        transform: scale(1.05);
    }

    .cta-strip {
        background: var(--red-primary);
        position: relative;
        overflow: hidden;
    }

    .cta-strip::after {
        content: '';
        position: absolute;
        right: -5%;
        top: -40%;
        width: 45%;
        height: 200%;
        background: var(--red-dark);
        transform: skewX(-8deg);
    }

    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s ease, transform .7s ease;
    }

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

    .reveal-left {
        opacity: 0;
        transform: translateX(-36px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(36px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

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

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

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

    .delay-4 {
        transition-delay: .4s;
    }

    .stat-num {
        font-family: 'Bebas Neue', cursive;
        color: var(--red-primary);
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        line-height: 1;
    }

    input,
    textarea,
    select {
        border: 1px solid #e5e7eb;
        padding: .75rem 1rem;
        font-size: .875rem;
        transition: border-color .2s;
        outline: none;
        width: 100%;
        background: #fff;
    }

    input:focus,
    textarea:focus,
    select:focus {
        border-color: var(--red-primary);
    }

    @media(prefers-reduced-motion:reduce) {

        .reveal,
        .reveal-left,
        .reveal-right {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }