        @font-face {
            font-family: 'BehindTheNineties';
            src: url('Brand Assets/Fonts/Behind the Nineties/Behind-The-Nineties-Rg.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'BehindTheNineties';
            src: url('Brand Assets/Fonts/Behind the Nineties/Behind-The-Nineties-Md.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'BehindTheNineties';
            src: url('Brand Assets/Fonts/Behind the Nineties/Behind-The-Nineties-It.woff2') format('woff2');
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'BehindTheNineties';
            src: url('Brand Assets/Fonts/Behind the Nineties/Behind-The-Nineties-Xbd-It.woff2') format('woff2');
            font-weight: 800;
            font-style: italic;
            font-display: block;
        }

        @font-face {
            font-family: 'Grift';
            src: url('Brand Assets/Fonts/Grift/Grift-Black.woff2') format('woff2');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --burgundy: #610023;
            --olive: #6D6400;
            --pink: #EDABC1;
            --cream: #FFE5CF;
            --coral: #F19061;
            --sage: #c5c199;
            --shadow: 0 12px 16px -8px rgba(0, 0, 0, 0.18), 0 6px 8px -4px rgba(0, 0, 0, 0.10);
        }

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

        html {
            scroll-behavior: auto;
            overflow-x: hidden;
            background-color: var(--pink);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            line-height: 1.5;
            background-color: var(--cream);
            color: var(--burgundy);
            overflow-x: hidden;
            padding-top: 80px;
        }

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

        a {
            color: inherit;
        }

        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background-color: var(--burgundy);
            height: 80px;
            padding: 0 10%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--burgundy);
            transition: transform 0.4s ease;
        }

        .site-nav.nav-hidden {
            transform: translateY(-100%);
        }

        .nav-logo img {
            height: 45px;
            width: auto;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .nav-links a {
            font-family: 'Grift', sans-serif;
            font-weight: 900;
            font-size: 17px;
            letter-spacing: -0.36px;
            color: var(--cream);
            text-decoration: none;
            position: relative;
        }

        .nav-links a::after,
        .footer-back-top::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-links a::after {
            background-color: var(--coral);
        }

        .nav-links a:hover::after,
        .footer-back-top:hover::after {
            width: 100%;
        }

        .btn-nav,
        .btn-primary,
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            line-height: 1;
            border-radius: 8px;
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.4s cubic-bezier(0.34, 1.8, 0.64, 1);
        }

        .btn-nav {
            background-color: var(--pink);
            color: var(--burgundy);
            font-family: 'BehindTheNineties', serif;
            font-weight: 500;
            font-style: normal;
            font-size: 27px;
            letter-spacing: -0.36px;
            padding: 13px 30px;
            width: 216px;
            text-align: center;
            white-space: nowrap;
        }

        .btn-primary {
            background-color: var(--olive);
            color: var(--cream);
            font-family: 'BehindTheNineties', serif;
            font-weight: 500;
            font-size: 27px;
            padding: 16px 46px;
            border: 2.5px solid transparent;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--cream);
            border: 2.5px solid var(--cream);
            font-family: 'BehindTheNineties', serif;
            font-weight: 500;
            font-size: 27px;
            padding: 16px 46px;
        }

        .btn-nav:hover,
        .btn-outline:hover,
        .btn-primary:hover {
            transform: scale(1.02);
        }

        .btn-nav:hover {
            background-color: var(--coral);
        }

        .btn-primary:hover {
            background-color: var(--pink);
            color: var(--burgundy);
        }

        .btn-outline:hover {
            background-color: var(--pink);
            border-color: var(--pink);
            color: var(--burgundy);
        }

        .burger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: transparent !important;
            border: none;
            cursor: pointer;
            padding: 4px;
            -webkit-appearance: none;
            appearance: none;
            -webkit-tap-highlight-color: transparent;
            outline: none;
            transform: none !important;
            transition: none !important;
        }

        .burger-btn:focus,
        .burger-btn:active,
        .burger-btn:focus-visible {
            background: transparent !important;
            outline: none;
            box-shadow: none;
        }

        .burger-btn span {
            display: block;
            width: 24px;
            height: 2.5px;
            background-color: var(--pink);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .burger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .burger-btn.open span:nth-child(2) { opacity: 0; }
        .burger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        .mobile-menu {
            position: fixed;
            inset: 0;
            background-color: var(--burgundy);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
            display: none;
            flex-direction: column;
            align-items: center;
            overflow-y: auto;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
            z-index: 99;
        }

        .mobile-menu.open { transform: translateY(0); }

        .mobile-menu-logo {
            padding: 52px 10% 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 100%;
        }

        .mobile-menu-logo img {
            height: 45px;
            width: auto;
        }

        .mobile-menu-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0 10%;
            gap: 56px;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            width: 100%;
            text-align: center;
        }

        .mobile-nav-links a {
            font-family: 'Grift', sans-serif;
            font-weight: 900;
            font-size: clamp(1.9rem, 4vw, 2.6rem);
            letter-spacing: -0.36px;
            color: var(--cream);
            text-decoration: none;
            line-height: 1.3;
            position: relative;
            transition: color 0.2s ease;
        }

        .mobile-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--coral);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .mobile-nav-links a:hover { color: var(--coral); }
        .mobile-nav-links a:hover::after { width: 100%; }

        .mobile-menu .btn-nav {
            display: inline-block;
        }

        .mobile-menu-socials {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            padding: 0 10% 48px;
            flex-shrink: 0;
            width: 100%;
        }

        .mobile-menu-socials img {
            height: 26px;
            width: auto;
            opacity: 0.85;
            transition: opacity 0.2s ease;
        }

        .mobile-menu-socials a:hover img {
            opacity: 1;
        }

        .mobile-menu.open ~ .back-to-top.visible {
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .floating-burger {
            display: none;
            position: fixed;
            top: 20px;
            right: 32px;
            z-index: 101;
            background-color: var(--burgundy);
            border: none;
            border-radius: 10px;
            padding: 14px 16px;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            justify-content: center;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .floating-burger.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-burger span {
            display: block;
            width: 22px;
            height: 2.5px;
            background-color: var(--cream);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .floating-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .floating-burger.open span:nth-child(2) { opacity: 0; }
        .floating-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        @media (min-width: 1025px) {
            .mobile-menu { background-image: url('Brand Assets/Patterns/Burger Menu Pattern DESKTOP.webp'); }
            .floating-burger { display: flex; }
        }

        .portfolio-hero {
            position: relative;
            padding: 90px 10% 0;
            min-height: 440px;
            z-index: 3;
            text-align: center;
        }

        .portfolio-stripe {
            width: 100%;
            position: relative;
            z-index: 2;
            margin-top: -24px;
            line-height: 0;
        }

        .portfolio-stripe img {
            width: 100%;
            display: block;
        }

        .portfolio-label {
            display: inline-block;
            background-color: var(--olive);
            color: var(--cream);
            font-family: 'BehindTheNineties', serif;
            font-weight: 500;
            font-size: 41px;
            line-height: 1.15;
            padding: 2px 26px;
            margin-bottom: 32px;
            transform: rotate(-1.75deg);
        }

        .portfolio-title {
            max-width: 880px;
            font-family: 'BehindTheNineties', serif;
            font-weight: 800;
            font-style: italic;
            font-size: 74px;
            line-height: 0.92;
            letter-spacing: -0.03em;
            color: var(--burgundy);
            margin: 0 auto;
        }

        .portfolio-intro {
            display: none;
        }

        .portfolio-gallery {
            background-color: var(--cream);
            padding: 0 10% 120px;
            margin-top: -50px;
            position: relative;
            z-index: 1;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 3px 4px rgba(0, 0, 0, 0.30), 0 1px 2px rgba(0, 0, 0, 0.15);
        }

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

        .portfolio-card {
            position: relative;
            display: block;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 14px;
            text-decoration: none;
            background-color: var(--sage);
            box-shadow: 0 10px 24px rgba(97, 0, 35, 0.10);
        }

        .portfolio-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease, filter 0.45s ease;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(237, 171, 193, 0.34) 0%, rgba(237, 171, 193, 1) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
            z-index: 1;
        }

        .portfolio-card-copy {
            position: absolute;
            inset: auto 0 0;
            padding: 28px 24px 24px;
            color: var(--burgundy);
            z-index: 2;
            transform: translateY(18px);
            opacity: 0;
            transition: transform 0.35s ease, opacity 0.35s ease;
        }

        .portfolio-card-title {
            font-family: 'BehindTheNineties', serif;
            font-weight: 500;
            font-size: 36px;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 10px;
        }

        .portfolio-card-meta {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.14em;
        }

        .portfolio-card:hover img,
        .portfolio-card:focus-visible img {
            transform: scale(1.06);
            filter: brightness(0.8);
        }

        .portfolio-card:hover::before,
        .portfolio-card:focus-visible::before {
            opacity: 1;
        }

        .portfolio-card:hover .portfolio-card-copy,
        .portfolio-card:focus-visible .portfolio-card-copy {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-card:focus-visible {
            outline: 3px solid var(--coral);
            outline-offset: 4px;
        }

        .portfolio-cta-section {
            background-color: var(--cream);
            padding: 16px 10% 120px;
            margin-top: -24px;
            position: relative;
            z-index: 1;
            border-radius: 0 0 24px 24px;
        }

        .portfolio-cta {
            position: relative;
            max-width: 1180px;
            margin: 0 auto;
            color: var(--burgundy);
            display: grid;
            grid-template-columns: minmax(110px, 180px) minmax(0, 1fr) minmax(110px, 180px);
            gap: 24px clamp(24px, 4vw, 52px);
            align-items: center;
            padding: 40px 0 0;
        }

        .portfolio-cta-content {
            width: 100%;
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
        }

        .portfolio-cta-badge {
            display: inline-block;
            background-color: var(--coral);
            color: var(--burgundy);
            font-family: 'BehindTheNineties', serif;
            font-weight: 500;
            font-size: 41px;
            line-height: 1.05;
            padding: 7px 24px 10px;
            margin-bottom: 38px;
            transform: rotate(0.5deg);
        }

        .portfolio-cta-illustration {
            width: 100%;
            max-width: 170px;
            pointer-events: none;
        }

        .portfolio-cta-illus-motion--left {
            justify-self: start;
        }

        .portfolio-cta-illus-motion--right {
            justify-self: end;
        }

        .portfolio-cta-illustration-left {
            transform: translateY(12px) rotate(-7deg);
        }

        .portfolio-cta-illustration-right {
            transform: translateY(10px) rotate(-12deg);
        }

        .portfolio-cta-title {
            font-family: 'BehindTheNineties', serif;
            font-weight: 400;
            font-style: normal;
            font-size: 64px;
            line-height: 0.95;
            letter-spacing: -0.05em;
            color: var(--burgundy);
            max-width: 70%;
            margin: 0 auto 48px;
        }

        .portfolio-cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
        }

        .portfolio-cta-actions .btn-primary {
            min-width: 0;
        }

        .footer {
            background-color: var(--burgundy);
            background-image: url('Brand Assets/Patterns/Footer Pattern DESKTOP.webp');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            padding: 100px 10% 60px;
            margin-top: -48px;
            position: relative;
            z-index: 0;
            text-align: center;
        }

        .footer-tagline {
            font-family: 'BehindTheNineties';
            font-weight: 400;
            font-style: italic;
            font-size: 26px;
            color: var(--cream);
            margin: 60px auto 40px;
            line-height: 1.3;
            max-width: 320px;
        }

        .footer-logo {
            width: 320px;
            margin: 0 auto 60px;
        }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 229, 207, 0.35);
            margin: 0 0 36px;
        }

        .footer-bottom {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }

        .footer-back-top {
            position: relative;
            justify-self: start;
            text-decoration: none;
            color: var(--pink);
            font-size: 14px;
        }

        .footer-back-top::after {
            background-color: var(--pink);
        }

        .footer-copyright {
            font-size: 14px;
            color: var(--pink);
        }

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-self: end;
        }

        .footer-socials a {
            display: flex;
            align-items: center;
        }

        .footer-socials img {
            height: 26px;
            width: auto;
        }

        .back-to-top {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 52px;
            height: 52px;
            border: none;
            border-radius: 50%;
            background: var(--burgundy);
            color: var(--cream);
            display: grid;
            place-items: center;
            cursor: pointer;
            z-index: 98;
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
            transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        .back-to-top:focus,
        .back-to-top:active {
            outline: none;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .back-to-top svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @media (max-width: 1024px) {
            .site-nav.nav-hidden { transform: none; }

            .nav-logo img { height: 40px; }

            .nav-links {
                display: none;
            }

            .btn-nav { display: none; font-size: 24px; }

            .burger-btn {
                display: flex;
            }

            .mobile-menu {
                background-image: url('Brand Assets/Patterns/Burger Menu Pattern MOBILE.webp');
                display: flex;
            }

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

            .portfolio-hero,
            .portfolio-gallery,
            .portfolio-cta-section {
                padding-left: 5%;
                padding-right: 5%;
            }

            .portfolio-hero {
                padding-top: 72px;
                padding-bottom: 72px;
                min-height: 0;
            }

            .portfolio-label {
                font-size: 32px;
                margin-bottom: 26px;
            }

            .portfolio-title {
                font-size: 48px;
            }

            .portfolio-gallery {
                padding-top: 64px;
                padding-bottom: 80px;
            }

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

            .portfolio-gallery {
                background-color: transparent;
            }

            .portfolio-card {
                display: flex;
                flex-direction: column;
                aspect-ratio: unset;
                overflow: visible;
                background-color: transparent;
                box-shadow: none;
            }

            .portfolio-card img {
                aspect-ratio: 1 / 1;
                height: auto;
                flex-shrink: 0;
                border-radius: 14px;
            }

            .portfolio-card::before {
                display: none;
            }

            .portfolio-card-copy {
                position: static;
                transform: none;
                opacity: 1;
                padding: 12px 4px 4px;
                background-color: transparent;
            }

            .portfolio-card-title {
                font-size: 26px;
            }

            .portfolio-cta {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px 24px;
                padding-top: 28px;
            }

            .portfolio-cta-content {
                grid-column: 1 / -1;
                order: -1;
            }

            .portfolio-cta-badge {
                font-size: 32px;
                margin-bottom: 28px;
            }

            .portfolio-cta-title {
                font-size: 52px;
                margin-bottom: 36px;
                max-width: 70%;
            }

            .portfolio-cta-illustration {
                max-width: 132px;
            }

            .portfolio-cta-illustration-left,
            .portfolio-cta-illustration-right {
                display: none;
            }

            .portfolio-cta-actions {
                justify-content: center;
            }

            .portfolio-cta-actions .btn-primary {
                font-size: 24px;
                padding: 18px 24px;
                width: 80%;
            }

            .footer-tagline {
                font-size: 28px;
            }

            .footer {
                background-image: url('Brand Assets/Patterns/Footer Pattern MOBILE.webp');
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .footer-back-top,
            .footer-socials {
                justify-self: center;
            }
        }

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

            .portfolio-cta-section {
                padding-bottom: 88px;
            }

            .portfolio-cta {
                grid-template-columns: 1fr 1fr;
                gap: 10px 12px;
            }

            .portfolio-cta-badge {
                font-size: 32px;
                padding: 6px 16px 8px;
                margin-bottom: 24px;
            }

            .portfolio-cta-title {
                font-size: 52px;
                margin-bottom: 32px;
                max-width: 70%;
            }

            .portfolio-cta-illustration {
                max-width: 110px;
            }

            .portfolio-cta-actions .btn-primary {
                font-size: 24px;
                padding: 18px 24px;
            }
        }

        /* =============================================
           SCROLL REVEAL
        ============================================= */

        .js-scroll .portfolio-label,
        .js-scroll .portfolio-title {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .js-scroll .portfolio-label.revealed,
        .js-scroll .portfolio-title.revealed {
            opacity: 1;
            transform: none;
        }

        .js-scroll [data-reveal] {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .js-scroll [data-reveal="from-left"] {
            transform: translateX(-28px);
        }

        .js-scroll [data-reveal="from-right"] {
            transform: translateX(28px);
        }

        .js-scroll [data-reveal].revealed {
            opacity: 1;
            transform: none;
        }

        .js-scroll .portfolio-cta-illustration-right.revealed {
            transform: rotate(-12deg);
        }

