/* 
 * Farseen - Redesign V2
 * Aesthetic: Dark, Cinematic, Brutalist-Light
 */

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #f05225;
    --text-muted: #888888;
    --border-color: rgba(255, 255, 255, 0.1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    --container-width: 1400px;
    --gutter: 2rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor everywhere */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    /* Fade in on load */
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

ul {
    list-style: none;
}

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

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

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container.small {
    max-width: 1000px;
}

.container.fluid {
    max-width: 100%;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.section-num {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 10vw;
    line-height: 0.9;
    font-weight: 400;
    color: #fff;
    mix-blend-mode: exclusion;
    cursor: default;
    /* Text cursor logic handled by JS */
}

/* Lighting Effect Spans */
.hero-title .char {
    opacity: 0.15;
    /* Default Dim */
    transition: color 0.1s, opacity 0.1s;
    display: inline-block;
    /* Required for transforms if added later */
}

.hero-buttons {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1s;
    /* Simple delay animation */
}

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

.btn-link {
    font-size: 1.2rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--accent-color);
    gap: 15px;
}

.works-footer {
    margin-top: 4rem;
    text-align: center;
}

.lead-text {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 4rem;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

body.hovering .cursor-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    mix-blend-mode: difference;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo .dot {
    color: var(--accent-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.time-display {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    font-size: 0.9rem;
    opacity: 0.7;
}

.menu-btn {
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links {
    text-align: center;
}

.menu-link {
    font-size: 4rem;
    font-family: var(--font-heading);
    display: block;
    margin: 1rem 0;
    position: relative;
    color: #555;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #fff;
    font-style: italic;
}

.menu-link .num {
    font-size: 1rem;
    font-family: var(--font-body);
    vertical-align: super;
    margin-left: 10px;
    color: var(--accent-color);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 3rem;
}

.counter {
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 0.8;
}

/* --- Hero --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
}

.hero-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-col-text {
    flex: 1;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Push content to right */
    text-align: right;
    /* Right align text */
    padding-right: 3rem;
    /* Space from center */
}

.hero-col-img {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Push image to left */
    opacity: 0;
    padding-left: 3rem;
    /* Space from center */
}

.hero-col-img img {
    max-height: 85vh;
    width: auto;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.hero-col-img img:hover {
    filter: grayscale(0%);
}

.line {
    overflow: hidden;
}

.line span {
    display: block;
    transform: translateY(100%);
}

.hero-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    z-index: 10;
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-section {
        padding-top: 80px;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
    }

    .hero-flex-container {
        flex-direction: column-reverse;
        /* Image Top, Text Bottom */
        justify-content: flex-end;
        height: 100%;
        gap: 2rem;
    }

    .hero-col-text {
        width: 100%;
        text-align: center;
        align-items: center;
        padding-right: 0;
        padding-top: 0;
        z-index: 10;
        flex: 0 0 auto;
        margin-bottom: 5rem;
    }

    .hero-title {
        font-size: 15vw;
        line-height: 0.9;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        margin-top: 1rem;
        opacity: 1;
    }

    .hero-col-img {
        position: relative;
        /* In flow */
        bottom: auto;
        right: auto;
        width: 100%;
        height: 50vh;
        /* Top half */
        justify-content: center;
        padding-left: 0;
        z-index: 1;
        opacity: 0.8 !important;
        margin-left: 0;
        align-items: flex-end;
        /* Align img to bottom of this container */
    }

    .hero-col-img img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: bottom center;
        /* Fade bottom into black */
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }

    .hero-footer {
        bottom: 1rem;
        font-size: 0.7rem;
        justify-content: center;
        gap: 2rem;
        z-index: 20;
    }

    .counter {
        font-size: 4rem;
    }
}

/* 5. Showcase Section */
/* 5. Showcase Section */
.showcase-section {
    height: 60vh;
    /* Reduced from 100vh */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    cursor: default;
}

/* Background/Floating Images Container */
.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Individual Floating Images */
.showcase-img {
    width: 350px;
    /* Slightly larger for impact */
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: 4px;
    filter: brightness(0.8) contrast(1.1);
    /* Cinematic look */
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    /* Depth */
}

.showcase-overlay {
    display: none;
}

.showcase-content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    width: 100%;
    mix-blend-mode: exclusion;
    /* Makes text visible over images if they cross */
}

.showcase-title {
    font-size: 10vw;
    /* Massive responsive type */
    line-height: 0.85;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.static-text {
    display: block;
    font-family: var(--font-body);
    font-size: 0.4em;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: -55px;
    /* Aggressive pull */
    opacity: 0.8;
}

.dynamic-text {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-color);
    margin-top: -55px;
    /* Aggressive pull */
    min-height: 1.2em;
    font-size: 0.8em;
    text-transform: none;
    transition: opacity 0.3s ease;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .showcase-section {
        min-height: 60vh;
        /* Reduce height on mobile */
        padding: 4rem 0;
        /* Less padding */
    }

    .showcase-title {
        font-size: 15vw;
    }

    .static-text {
        font-size: 0.3em;
        margin-bottom: -25px;
        /* Mobile adjustment */
    }

    .dynamic-text {
        margin-top: -25px;
        /* Mobile adjustment */
    }

    .showcase-img {
        width: 150px;
    }
}

/* --- About --- */
/* --- About --- */
.about-section {
    padding: 12rem 0;
    position: relative;
    background: var(--bg-color);
}

.about-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.lead-statement {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
    max-width: 1200px;
    color: #ccc;
}

.lead-statement .highlight {
    color: #fff;
    font-style: italic;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.about-col {
    padding-right: 2rem;
}

.col-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.col-text {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.text-link {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: 0.2s;
}

.text-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Mobile Responsive For About */
@media (max-width: 900px) {
    .about-section {
        padding: 6rem 0;
    }

    .lead-statement {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }

    .about-col {
        padding-right: 0;
    }
}

/* Spacer removed for tighter layout */
.about-content>* {
    margin-bottom: 0;
}

/* Stats Grid adjustment */
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-top {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 6rem;
    color: var(--accent-color);
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
}

.stat-bottom {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .stats-grid {
        flex-direction: column;
        gap: 4rem;
    }
}

/* 6. Capabilities Section (Sticky Stack) */
.capabilities-section {
    position: relative;
    background: #000;
    /* Wrapper handles flow */
}

/* Individual Full-Screen Panel */
.cap-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #000;
    width: 100%;
    display: flex;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
}

.cap-display {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Left: Text */
.cap-text-col {
    flex: 1;
    padding: 0 5rem;
    z-index: 10;
}

.cap-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 6rem;
    color: #f05225;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    /* Animated in by ScrollTrigger */
    transform: translateY(30px);
}

.cap-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.cap-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.tool-pill {
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    transition: 0.3s;
}

.tool-pill:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Right: Internal Gallery */
.cap-img-col {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-gallery-container {
    width: 80%;
    height: 70%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* Internal slider styles */
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: none;
    transform: none;
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
}

.gallery-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Internal Gallery Navigation */
.gallery-nav {
    position: absolute;
    bottom: 3rem;
    right: 5rem;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-nav-btn:hover {
    background: #f05225;
    border-color: #f05225;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .cap-display {
        flex-direction: column;
        justify-content: center;
        padding-top: 2rem;
    }

    .cap-text-col {
        padding: 0 2rem;
        text-align: center;
        margin-bottom: 2rem;
        flex: 0;
    }

    .cap-title {
        font-size: 3rem;
    }

    .cap-desc {
        display: none;
        /* Hide desc on mobile if space is tight, or make small */
    }

    .cap-tools {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .cap-img-col {
        flex: 1;
        width: 100%;
    }

    .cap-gallery-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .gallery-nav {
        bottom: 2rem;
        right: 2rem;
    }
}

/* --- Selected Works --- */
/* --- Works (Interactive Fisheye Gallery) --- */
.works-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    padding: 0;
}

.works-gallery-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.works-grid {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 120%;
    /* Extra width for safe transform edges */
    height: 120%;
    margin-left: -10%;
    /* Center the larger grid */
    margin-top: -10%;
    transform-origin: center center;
}

.works-grid-item {
    flex: 0 0 auto;
    width: 250px;
    /* Base size */
    height: 150px;
    margin: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease-out, filter 0.2s ease;
    filter: brightness(0.6) grayscale(20%);
    will-change: transform;
}

.works-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vignette Overlay */
.works-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, #000 90%);
    pointer-events: none;
    z-index: 10;
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    /* Force Black */
    z-index: 9999;
    transform: translateX(-100%);
    /* Hidden Left */
    pointer-events: none;
}

/* Floating Sticky Button */
.gallery-btn-container {
    position: fixed;
    /* Fixed to viewport means it won't scroll away */
    bottom: 3rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    pointer-events: none;
    /* Don't block grid interaction */
}

.view-gallery-btn {
    pointer-events: auto;
    /* Enable clicks on button only */
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.view-gallery-btn .arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

/* Button Hover: Slide Right Effect */
.view-gallery-btn:hover {
    background: #fff;
    color: #000;
    padding-right: 3.5rem;
    /* Elongate */
}

.view-gallery-btn:hover .arrow-icon {
    transform: translateX(10px);
}

.work-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.work-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.work-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
}

.work-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    transition: 0.3s;
}

.work-year {
    font-size: 1rem;
    color: var(--text-muted);
}

.work-item:hover .work-title {
    transform: translateX(20px);
    color: #fff;
}

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

.works-list:hover .work-item {
    opacity: 0.3;
}

.works-list:hover .work-item:hover {
    opacity: 1;
}

.work-preview-img {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 550px;
    transform: translate(-50%, -50%) scale(0);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s;
}

/* --- Footer --- */
.footer-section {
    padding: 10rem 0 2rem 0;
    text-align: center;
}

.footer-cta h2 {
    font-size: 5rem;
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}

.btn-main {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.footer-section {
    padding: 8rem 0 4rem;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8rem;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 6vw;
    line-height: 1;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.btn-main {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border: 1px solid var(--text-color);
    border-radius: 50px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-main:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    /* Override previous margin */
}

.socials {
    display: flex;
    gap: 3rem;
}

.socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .lead-text {
        font-size: 1.5rem;
    }

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

    .cat-name {
        font-size: 1.5rem;
    }

    .work-title {
        font-size: 2rem;
    }

    .footer-cta h2 {
        font-size: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cursor-dot,
    .cursor-circle,
    .work-preview-img {
        display: none;
    }
}