*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #EA7317;
    --orange-glow: rgba(234, 115, 23, .4);
    --black: #050505;
    --white: #fefefe;
    --grey: #1a1a1a;
    --light: #f8f8f8;
    --gold: #d4a574;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    overflow-x: hidden !important;
    width: 100%;
    cursor: none;
    font-weight: 300;
}

/* Force hidden overflow on root */
html {
    overflow-x: hidden !important;
    width: 100%;
}

/* Scroll Lock */
.menu-open,
.menu-open body {
    overflow: hidden !important;
    height: 100% !important;
    position: relative;
    touch-action: none;
}

/* ═══════════════════════════════════
   CURSOR
═══════════════════════════════════ */
#cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width .3s, height .3s;
}

#cursor-ring {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(234, 115, 23, .4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .4s, height .4s, border-color .3s;
}

body.hover-active #cursor {
    width: 60px;
    height: 60px;
    background: rgba(234, 115, 23, .2);
}

body.hover-active #cursor-ring {
    width: 80px;
    height: 80px;
    border-color: var(--orange);
}

/* ═══════════════════════════════════
   MAIN SITE
═══════════════════════════════════ */
#main-site {
    opacity: 1;
    visibility: visible;
}

#main-site.visible {
    opacity: 1;
    visibility: visible;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    padding: 20px 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, .95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

nav>* {
    pointer-events: auto;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform .4s;
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.nav-links {
    display: flex;
    gap: 56px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: .6;
    transition: all .3s;
    position: relative;
}


.nav-links a.active {
    opacity: 1;
    color: var(--orange);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width .4s;
    box-shadow: 0 0 10px var(--orange-glow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-cta {
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 1px solid var(--orange);
    background: transparent;
    color: var(--orange);
    padding: 14px 36px;
    cursor: pointer;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: translateY(100%);
    transition: transform .4s;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta:hover {
    color: var(--white);
    box-shadow: 0 0 30px var(--orange-glow);
}

.nav-cta:hover::before {
    transform: translateY(0);
}

.nav-cta a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

/* PAGE SYSTEM */
.page {
    min-height: 100vh;
    position: relative;
}

/* ═══════════════════════════════════
   HOME PAGE
═══════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 3D Particle canvas */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1400px;
    padding: 0 5%;
    width: 100%;
}

.hero-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: .65rem;
    font-weight: 300;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    margin: 0 12px;
}

.hero-title .char {
    display: inline-block;
}

.hero-title .w1 .char {
    animation-delay: .3s;
}

.hero-title .w2 {
    color: var(--orange);
    text-shadow: 0 0 60px var(--orange-glow), 0 0 120px var(--orange-glow);
}

.hero-title .w2 .char {
    animation-delay: .5s;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.6rem);
    font-weight: 200;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 48px;
}

.hero-desc {
    max-width: 680px;
    margin: 0 auto 56px;
    font-size: .95rem;
    line-height: 2;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .04em;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Raleway', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 48px;
    cursor: pointer;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 40px var(--orange-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, .2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform .6s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px var(--orange-glow);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--white);
    transform: translateY(-4px);
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.scroll-wheel {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(234, 115, 23, .4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Floating elements */
.float-element {
    position: absolute;
    opacity: .03;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.fe1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(80px);
    animation-delay: 0s;
}

.fe2 {
    bottom: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(100px);
    animation-delay: -5s;
}

.fe3 {
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    filter: blur(60px);
    animation-delay: -10s;
}

/* Marquee */
.marquee-section {
    padding: 48px 0;
    border-top: 1px solid rgba(234, 115, 23, .15);
    border-bottom: 1px solid rgba(234, 115, 23, .15);
    overflow: hidden;
    background: rgba(234, 115, 23, .02);
}

.marquee {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .08);
    padding: 0 80px;
    white-space: nowrap;
    transition: color .3s;
}

.marquee-item:hover {
    color: rgba(234, 115, 23, .4);
}

.marquee-dot {
    color: var(--orange);
    margin-right: 80px;
    filter: drop-shadow(0 0 10px var(--orange-glow));
}

/* Featured Work */
.section {
    padding: 120px 5%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 120px;
}

.section-tag {
    font-family: 'Raleway', sans-serif;
    font-size: .62rem;
    font-weight: 300;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.01em;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    margin-top: 24px;
    letter-spacing: .08em;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.work-item {
    position: relative;
    min-height: 600px;
    height: 70vh;
    max-height: 800px;
    overflow: hidden;
    cursor: pointer;
    background: var(--grey);
    border-radius: 8px;
}

.work-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.work-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1), filter .6s;
}

.work-item:hover .work-img {
    transform: scale(1.1) rotateZ(0.5deg);
    filter: brightness(.7);
}

/* Work visuals - Updated to use Images */
.wv1,
.wv2,
.wv3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wv1 {
    background-image: url('images/img_7752256930243823726.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wv2 {
    background-image: url('images/img_7516315702076590524.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wv3 {
    background-image: url('images/img_2110382747873872088.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, .98) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .6s;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 56px 48px;
    transform: translateY(30px);
    opacity: 0;
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.work-item:hover .work-info {
    transform: translateY(0);
    opacity: 1;
}

.work-cat {
    font-family: 'Raleway', sans-serif;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.work-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.work-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    letter-spacing: .02em;
    max-width: 600px;
}

.work-arrow {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    opacity: 0;
    transform: scale(.7) rotate(0deg);
    transition: all .6s;
    box-shadow: 0 0 30px var(--orange-glow);
}

.work-item:hover .work-arrow {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}

/* Showreel CTA */
.showreel-cta-section {
    padding: 200px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showreel-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(234, 115, 23, .08) 0%, transparent 70%);
    pointer-events: none;
}

.showreel-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.showreel-cta-title .highlight {
    color: var(--orange);
    text-shadow: 0 0 40px var(--orange-glow);
}

.showreel-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 1px solid var(--orange);
    background: transparent;
    color: var(--orange);
    padding: 24px 56px;
    cursor: pointer;
    transition: all .5s;
    position: relative;
}

.play-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: all .5s;
}

.showreel-play-btn:hover {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 0 50px var(--orange-glow);
    transform: translateY(-6px);
}

.showreel-play-btn:hover .play-icon {
    background: var(--white);
    color: var(--orange);
}

/* Philosophy */
.philosophy-section {
    padding: 180px 64px;
    background: linear-gradient(135deg, rgba(234, 115, 23, .03) 0%, transparent 50%, rgba(212, 165, 116, .03) 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.phil-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 400;
    line-height: 1.25;
    font-style: italic;
    color: var(--white);
    margin-bottom: 48px;
}

.phil-quote em {
    color: var(--orange);
    font-style: normal;
    text-shadow: 0 0 30px var(--orange-glow);
}

.phil-author {
    font-family: 'Raleway', sans-serif;
    font-size: .75rem;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.stat {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(234, 115, 23, .15);
    transition: all .5s;
}

.stat:hover {
    background: rgba(234, 115, 23, .05);
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(234, 115, 23, .15);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 0 30px var(--orange-glow);
}

.stat-num sup {
    font-size: 2.5rem;
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 16px;
}

/* Contact CTA */
.contact-section {
    padding: 240px 64px;
    text-align: center;
    position: relative;
}

.contact-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 28vw;
    font-weight: 900;
    color: rgba(234, 115, 23, .02);
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 8vw, 130px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.contact-title .highlight {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--orange-glow);
}

.contact-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 64px;
}

/* Footer */
footer {
    padding: 70px 64px 40px;
    border-top: 1px solid rgba(234, 115, 23, .15);
}

/* Centered Brand Section */
.footer-brand-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.footer-brand-center img {
    height: 55px;
    filter: brightness(0) invert(1);
    margin: 0 auto 32px;
    display: block;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .03em;
    font-weight: 300;
}

/* Footer Navigation Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col-title {
    font-family: 'Raleway', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: .95rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: color .3s, transform .3s;
    display: inline-block;
    letter-spacing: .02em;
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copy {
    font-size: .90rem;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--orange);
    background: rgba(234, 115, 23, .1);
    transform: translateY(-3px);
}

.footer-social-icon:hover svg {
    transform: scale(1.1);
}

/* ═══════════════════════════════════
   OUR WORK PAGE
═══════════════════════════════════ */
.page-hero {
    padding: 200px 64px 120px;
    text-align: center;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 11vw, 180px);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .04em;
    font-weight: 300;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 64px 80px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Raleway', sans-serif;
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid rgba(234, 115, 23, .3);
    background: transparent;
    color: rgba(255, 255, 255, .5);
    padding: 14px 32px;
    cursor: pointer;
    transition: all .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 25px var(--orange-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
    padding: 0 64px 180px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--grey);
    cursor: pointer;
}

.pc-wide {
    grid-column: span 8;
}

.pc-narrow {
    grid-column: span 4;
}

.pc-half {
    grid-column: span 6;
}

.pc-full {
    grid-column: span 12;
}

.project-inner {
    width: 100%;
    height: 100%;
    min-height: 450px;
    position: relative;
}

.project-bg {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1), filter .6s;
}

.project-card:hover .project-bg {
    transform: scale(1.12);
    filter: brightness(.5);
}

/* Project backgrounds - Updated to use Images */
.pb1 {
    background-image: url('images/img_7752256930243823726.jpg');
    background-size: cover;
    background-position: center;
}

.pb2 {
    background-image: url('images/img_7516315702076590524.jpg');
    background-size: cover;
    background-position: center;
}

.pb3 {
    background-image: url('images/img_2110382747873872088.jpg');
    background-size: cover;
    background-position: center;
}

.pb4 {
    background-image: url('images/img_5504538804041703896.jpg');
    background-size: cover;
    background-position: center;
}

.pb5 {
    background-image: url('images/img_8264621357365219715.jpg');
    background-size: cover;
    background-position: center;
}

.pb6 {
    background-image: url('images/img_2654166876295257707.jpg');
    background-size: cover;
    background-position: center;
}

.pb7 {
    background-image: url('images/img_922059933403538041.jpg');
    background-size: cover;
    background-position: center;
}

.pb8 {
    background-image: url('images/img_555343988692512383.jpg');
    background-size: cover;
    background-position: center;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, .95) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .7s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 52px 44px;
    transform: translateY(30px);
    opacity: 0;
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-cat {
    font-family: 'Raleway', sans-serif;
    font-size: .58rem;
    font-weight: 300;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.project-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.15;
}

.project-year {
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .3);
    margin-top: 12px;
}

.project-arrow {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(.7);
    transition: all .6s;
    box-shadow: 0 0 30px var(--orange-glow);
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}

/* Case Study */
.case-section {
    padding: 160px 64px;
    background: rgba(234, 115, 23, .02);
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.case-visual {
    aspect-ratio: 5/3;
    background: url('images/img_7752256930243823726.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.case-visual-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(234, 115, 23, .05) 100px, rgba(234, 115, 23, .05) 200px);
    animation: slidePattern 25s linear infinite;
}

.case-visual-text {
    position: absolute;
    bottom: 48px;
    left: 56px;
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .06);
    line-height: 1;
    text-transform: uppercase;
}

.case-content .section-tag {
    text-align: left;
    margin-bottom: 24px;
}

.case-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.case-desc {
    font-size: .9rem;
    line-height: 2.1;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .03em;
    margin-bottom: 48px;
    font-weight: 300;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Raleway', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
    transition: all .4s;
}

.case-link:hover {
    gap: 20px;
    color: var(--white);
}

/* ═══════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════ */
.about-hero {
    padding: 200px 64px 140px;
    position: relative;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(234, 115, 23, .06) 0%, transparent 60%);
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 10vw, 160px);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.about-title .highlight {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.values-section {
    padding: 0 64px 140px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 1500px;
    margin: 0 auto;
}

.value-card {
    padding: 72px 56px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(234, 115, 23, .1);
    transition: all .6s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--orange-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .6s;
}

.value-card:hover {
    border-color: var(--orange);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(234, 115, 23, .2);
}

.value-card:hover::before {
    opacity: .15;
}

.value-card>* {
    position: relative;
    z-index: 1;
}

.value-icon {
    font-family: 'Playfair Display', serif;
    font-size: 6.5rem;
    font-weight: 900;
    color: rgba(234, 115, 23, .12);
    line-height: 1;
    margin-bottom: 32px;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--orange-glow);
}

.value-card:hover .value-icon {
    color: var(--orange);
}

.value-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.value-desc {
    font-size: .82rem;
    line-height: 2;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .03em;
    font-weight: 300;
}

.team-section {
    padding: 140px 64px;
    background: rgba(5, 5, 5, .6);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1500px;
    margin: 0 auto;
}

.team-card {
    cursor: pointer;
    position: relative;
}

.team-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    background: var(--grey);
}

.team-img {
    width: 100%;
    height: 100%;
    filter: grayscale(.8);
    transition: all 1s cubic-bezier(.16, 1, .3, 1);
    background-size: cover;
    background-position: center;
}

.team-card:hover .team-img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Team gradients - Updated to use Images */
.tm1 {
    background-image: url('images/img_1115766349100621606.jpg');
}

.tm2 {
    background-image: url('images/img_4031187755467571242.jpg');
}

.tm3 {
    background-image: url('images/img_1906600723067956715.jpg');
}

.tm4 {
    background-image: url('images/img_7066229873347422903.jpg');
}

.team-initial {
    position: absolute;
    bottom: 24px;
    left: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .06);
    line-height: 1;
    text-transform: uppercase;
}

.team-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-role {
    font-family: 'Raleway', sans-serif;
    font-size: .65rem;
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.story-section {
    padding: 160px 64px;
}

.story-content {
    max-width: 1300px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 80px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--orange) 10%, var(--orange) 90%, transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: start;
    margin-bottom: 100px;
}

.timeline-item:nth-child(even) .tl-left {
    order: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .tl-center {
    order: 2;
}

.timeline-item:nth-child(even) .tl-right {
    order: 1;
    text-align: right;
}

.tl-left {
    padding-right: 60px;
}

.tl-right {
    padding-left: 60px;
}

.tl-center {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

.tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    background: var(--black);
    position: relative;
    box-shadow: 0 0 20px var(--orange-glow);
    transition: all .4s;
}

.timeline-item:hover .tl-dot {
    background: var(--orange);
    transform: scale(1.3);
}

.tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(234, 115, 23, .08);
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 40px var(--orange-glow);
}

.tl-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tl-desc {
    font-size: .82rem;
    line-height: 2;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .03em;
    font-weight: 300;
}

/* ═══ ANIMATIONS ═══ */
/* Animations Purged for Instant Load */

@keyframes scrollBounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 12px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 40px) rotate(5deg);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes slidePattern {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(200px);
    }
}

.reveal {
    opacity: 1;
    transform: none;
}

/* Ensure reveal items show on mobile if JS fails or for better UX */
@media screen and (max-width: 768px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.reveal-d1 {
    transition-delay: .2s;
}

.reveal-d2 {
    transition-delay: .4s;
}

.reveal-d3 {
    transition-delay: .6s;
}

.reveal-d4 {
    transition-delay: .8s;
}

/* Film grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    opacity: .8;
    mix-blend-mode: overlay;
}

@media(max-width:900px) {

    nav,
    .hero-content,
    .section,
    .page-hero,
    .filter-bar,
    .portfolio-grid,
    .about-hero,
    .values-section,
    .team-section,
    .story-section,
    footer {
        padding-left: 28px;
        padding-right: 28px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-cta {
        display: none;
    }

    .skip-intro {
        bottom: 40px;
        right: 28px;
        padding: 12px 24px;
    }

    .work-grid,
    .philosophy-grid,
    .case-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .work-item:first-child {
        aspect-ratio: 16/10;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pc-wide,
    .pc-narrow,
    .pc-half,
    .pc-full {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: left !important;
    }

    .tl-left,
    .tl-right {
        padding: 0;
        order: 2 !important;
    }

    .tl-center {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
}

/* Full Width Gallery Styles */
.project-content-wide {
    width: 100%;
    padding: 100px 0;
}

.project-text-container {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 40px;
    text-align: center;
}

.gallery-full {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 0 20px;
    width: 100%;
}

.g-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
    filter: grayscale(0.2);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.g-item:hover {
    filter: grayscale(0);
    transform: scale(1.01);
}

.g-col-4 {
    grid-column: span 4;
    aspect-ratio: 1;
}

.g-col-6 {
    grid-column: span 6;
    aspect-ratio: 4/3;
}

.g-col-8 {
    grid-column: span 8;
    aspect-ratio: 16/9;
}

.g-col-12 {
    grid-column: span 12;
    aspect-ratio: 21/9;
}

@media (max-width: 768px) {

    .g-col-4,
    .g-col-6,
    .g-col-8 {
        grid-column: span 12;
        aspect-ratio: 4/3;
    }
}

.image-with-caption {
    display: flex;
    flex-direction: column;
    height: auto !important;
    aspect-ratio: auto !important;
    margin-bottom: 40px;
}

.image-with-caption img {
    width: 100%;
    /* remove explicit height auto to let aspect-ratio take over, or keep it if ratio is set? 
       Actually, if we set aspect-ratio, height: auto is fine/good. */
    height: auto !important;
    object-fit: cover;
    margin-bottom: 24px;
}

/* Enforce aspect ratios from parent wrapper on the child image */
.g-col-4.image-with-caption img {
    aspect-ratio: 1;
}

.g-col-6.image-with-caption img {
    aspect-ratio: 4/3;
}

.g-col-8.image-with-caption img {
    aspect-ratio: 16/9;
}

.g-col-12.image-with-caption img {
    aspect-ratio: 21/9;
}


.caption-group {
    padding-left: 20px;
    border-left: 1px solid var(--orange);
    max-width: 100%;
}

.caption-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.caption-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════
   RESPONSIVE & MOBILE STYLES
═══════════════════════════════════ */

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 6000;
    background: transparent;
    border: none;
    padding: 0;
    margin-right: 8px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 5500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    list-style: none;
    text-align: center;
}

.mobile-links li {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
}

.mobile-menu-overlay.active .mobile-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-links a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* 
   ═══════════════════════════════════
   CORE LAYOUT FIXES
   ═══════════════════════════════════
*/

/* Hero Background Fix */
.project-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to top, #050505 0%, transparent 80%);
}

.project-title-wrap {
    position: relative;
    z-index: 2;
}

/* 
   ═══════════════════════════════════
   RESPONSIVE IMAGES & GRID (Mobile First)
   ═══════════════════════════════════
*/

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Gallery images */
.gallery-full img,
.g-item,
.g-img-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Make sure featured/overlay image fills its container properly */
.g-item-featured {
    position: relative;
    overflow: hidden;
}

.g-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile-first grid – images stack by default */
.gallery-full,
.portfolio-grid,
.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.g-col-4,
.g-col-6,
.g-col-8,
.g-col-12,
.pc-wide,
.pc-narrow,
.pc-half,
.pc-full {
    grid-column: 1 / -1 !important;
    /* full width on mobile */
    width: 100%;
}

/* ── Tablet and up (640px+) ── */
@media (min-width: 640px) {

    .gallery-full,
    .portfolio-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
    }

    .g-col-4 {
        grid-column: span 4 !important;
    }

    .g-col-6 {
        grid-column: span 6 !important;
    }

    .g-col-8 {
        grid-column: span 8 !important;
    }

    .g-col-12 {
        grid-column: span 12 !important;
    }

    .pc-wide {
        grid-column: span 12;
    }

    .pc-narrow {
        grid-column: span 6;
        grid-column-start: 4;
    }

    .pc-half {
        grid-column: span 6;
    }

    .pc-full {
        grid-column: span 12;
    }
}


/* 
   ═══════════════════════════════════
   SIDEBAR MENU & SMALL DEVICE TWEAKS (Max 900px)
   ═══════════════════════════════════
*/
@media(max-width: 900px) {

    /* Mobile Menu - FULL PAGE SIDEBAR STYLE */

    /* HIDE DESKTOP NAV */
    .nav-links,
    .nav-cta {
        display: none !important;
    }

    /* SHOW HAMBURGER */
    .mobile-menu-btn {
        display: flex !important;
    }

    /* Adjust Nav for Mobile */
    nav {
        justify-content: space-between !important;
        padding: 20px 18px 20px 24px !important;
        min-height: 70px;
        align-items: center;
        overflow: visible !important;
        position: relative;
    }

    /* Ensure logo doesn't overflow */
    .logo img {
        max-height: 40px;
        height: auto;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #050505;
        z-index: 5500;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        /* Top, Middle, Bottom */
        padding: 80px 32px 40px;
        /* Space for top close button */
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
        overflow: hidden !important;
        touch-action: none;
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Top Section (Button) */
    .mm-top {
        display: flex;
        justify-content: flex-end;
        /* Button Top Right */
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    .mobile-cta-btn {
        display: inline-block;
        padding: 14px 32px;
        border: 1px solid var(--orange);
        color: var(--orange);
        font-family: 'Raleway', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s;
        opacity: 0;
        transform: translateY(-20px);
    }

    .mobile-cta-btn:hover {
        background: var(--orange);
        color: var(--white);
    }

    /* Middle Section (Links) */
    .mm-middle {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .mobile-links {
        list-style: none;
        text-align: center;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-links li {
        margin-bottom: 24px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s;
    }

    /* FORCE VISIBILITY WHEN ACTIVE */
    .mobile-menu-overlay.active .mobile-links li {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .mobile-links a {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 8vw, 3.5rem);
        /* Responsive Large Text */
        color: var(--white);
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 700;
        display: block;
    }

    /* Bottom Section (Socials) */
    .mm-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        flex-shrink: 0;
        width: 100%;
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: var(--white);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .social-icon:hover {
        color: var(--orange);
        transform: translateY(-4px) scale(1.1);
    }

    .social-icon:hover svg {
        filter: drop-shadow(0 4px 12px var(--orange-glow));
    }

    /* Animation Delays */
    .mobile-menu-overlay.active .mobile-cta-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition-delay: 0.3s;
    }

    .mobile-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    /* Reduce section spacing on mobile */
    .section {
        padding: 60px 24px !important;
    }

    .section-header {
        margin-bottom: 60px !important;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 0 24px;
    }

    /* Reduce philosophy and contact section spacing */
    .philosophy-section,
    .contact-section,
    .showreel-cta-section {
        padding: 80px 24px !important;
    }

    /* FOOTER FIXES - Consistent Across All Devices */
    footer {
        padding: 30px 24px 20px !important;
    }

    .footer-brand-center {
        margin-bottom: 30px !important;
    }

    .footer-brand-center img {
        height: 50px;
        margin-bottom: 15px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
        margin-bottom: 30px !important;
    }

    .footer-col-title {
        font-size: .85rem !important;
    }

    .footer-links a {
        font-size: .95rem !important;
        color: #ffffff !important;
    }

    .footer-copy {
        font-size: .90rem !important;
        color: rgba(255, 255, 255, .5) !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* SMALL MOBILE (Max 600px) */
@media(max-width: 600px) {

    /* HOMEPAGE BLANK AREA FIX: Reduce padding even more */
    .section,
    .page-hero,
    .project-detail-hero,
    .about-hero {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        min-height: auto !important;
        /* Allow height to shrink */
    }

    .hero {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .section-header {
        margin-bottom: 40px !important;
    }

    .philosophy-section,
    .contact-section,
    .showreel-cta-section {
        padding: 50px 20px !important;
    }

    /* Adjust Hero Title for high impact on mobile */
    .hero-title {
        font-size: clamp(48px, 16vw, 84px);
        line-height: 1;
        margin-bottom: 24px;
        letter-spacing: -0.01em;
    }

    .portfolio-grid,
    .gallery-full,
    .work-grid,
    .values-section,
    .team-section {
        padding: 0 16px !important;
    }

    /* Ensure specific single col override if strict 1fr wasn't enough */
    .portfolio-grid,
    .gallery-full,
    .work-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Ensure no residual 2-col CSS affects this */
    .g-col-4,
    .g-col-6,
    .g-col-8,
    .g-col-12 {
        grid-column: 1 / -1 !important;
    }

    .stats-grid,
    .values-grid,
    .team-grid,
    .footer-grid,
    .timeline-item {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .contact-bg-text {
        display: none;
    }

    .image-with-caption {
        margin-bottom: 24px;
    }
}

/* 
   ═══════════════════════════════════
   ULTIMATE RESPONSIVENESS: SELECTED WORK
   Ensuring these styles override everything
   ═══════════════════════════════════
*/

/* Tablet Portrait & Laptop */
@media screen and (max-width: 1024px) {
    .work-grid {
        padding: 0 24px !important;
        gap: 40px !important;
    }

    .work-item {
        height: auto !important;
        aspect-ratio: 3 / 2 !important;
        min-height: auto !important;
        border-radius: 12px;
    }

    .work-info {
        padding: 32px;
    }

    .work-name {
        font-size: 2rem;
    }
}

/* Mobile Large & Small */
@media screen and (max-width: 600px) {
    .work-grid {
        padding: 0 16px !important;
        gap: 32px !important;
    }

    .work-item {
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        min-height: auto !important;
    }

    .work-info {
        padding: 24px 20px;
    }

    .work-name {
        font-size: 1.6rem;
    }

    .work-desc {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Mobile Extra Small */
@media screen and (max-width: 400px) {
    .work-grid {
        padding: 0 12px !important;
    }

    .work-item {
        aspect-ratio: 1 / 1 !important;
    }

    .work-name {
        font-size: 1.4rem;
    }
}

/* Fix Marquee for Mobile Overflow */
@media screen and (max-width: 768px) {
    .marquee-item {
        padding: 0 40px;
        font-size: 1.2rem;
    }

    .marquee-dot {
        margin-right: 40px;
    }

    nav {
        padding: 15px 20px !important;
    }
}

/* Ensure background images are perfectly centered and cover container */
.wv1,
.wv2,
.wv3 {
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    height: 100% !important;
}

/* Specifically for Coffee Image to ensure focal point (the latte is on the right) */
.wv1 {
    background-position: 90% center !important;
}

/* Luxury Hotel */
.wv2 {
    background-position: center center !important;
}

/* Tech dashboard */
.wv3 {
    background-position: center center !important;
}