:root {
    --bg-dark: #0a0a0a;
    --text-light: #e0e0e0;
    --accent: #b0916e;       /* Elegant Sand/Gold */
    --accent-hover: #c4a989; 
    --gray-lines: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-snappy: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-smooth: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    color: transparent; /* hides broken image alt text */
}

html, body {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-heading);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Hide default for custom setup */
    overflow-x: hidden;
}

a, button, input, textarea, select, .menu-toggle, .project-row {
    cursor: none !important;
}

::selection {
    background: var(--text-light);
    color: var(--bg-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.outlined-text {
    -webkit-text-stroke: 1px var(--text-light);
    color: transparent;
}

.container {
    padding: 0 4vw;
}

.container-large {
    padding: 0 2vw;
}

.section {
    padding: 15vh 0;
    position: relative;
}

.border-top {
    border-top: 1px solid var(--gray-lines);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: var(--text-light);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
}

.preloader-text {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    margin-bottom: 2rem;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.preloader-line {
    width: 0%;
    height: 1px;
    background-color: var(--accent);
    animation: loadLine 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes loadLine {
    to { width: 10vw; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Custom Magnetic Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(176, 145, 110, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body.cursor-hover .cursor-dot {
    width: 0px;
    height: 0px;
}

body.cursor-hover .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 1);
    border-color: #fff;
    mix-blend-mode: difference;
}

body.cursor-magnetic .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    border-width: 2px;
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5vw 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 20px;
    margin: -20px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: none;
    padding: 20px;
    margin: -20px;
}

.menu-text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--text-light);
    width: 100%;
    transition: transform 0.4s var(--transition-snappy);
}

/* Fullscreen Overlay Menu */
.fullscreen-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
}

.menu-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-light);
    transform: translateY(-100%);
    transition: transform 1s var(--transition-smooth);
    z-index: 1;
}

.fullscreen-menu.is-open {
    pointer-events: all;
}

.fullscreen-menu.is-open .menu-bg {
    transform: translateY(0);
}

.menu-toggle.is-active .hamburger span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-active .hamburger span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mega-nav-links {
    position: relative;
    z-index: 2;
    padding: 0 10vw;
}

.mega-nav-links li {
    overflow: hidden;
    margin-bottom: 0.5vh;
}

.mega-nav-links a {
    display: inline-block;
    font-size: clamp(2.5rem, 6.5vw, 8rem);
    line-height: 1;
    font-family: var(--font-serif);
    color: var(--bg-dark);
    font-weight: 400;
    transform: translateY(110%);
    transition: transform 1s var(--transition-smooth);
    position: relative;
}

.mega-nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    transform: translateY(110%);
    transition: transform 0.5s var(--transition-snappy);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.mega-nav-links a:hover::before {
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.fullscreen-menu.is-open .mega-nav-links a {
    transform: translateY(0);
}

.mega-nav-links li:nth-child(1) a { transition-delay: 0.3s; }
.mega-nav-links li:nth-child(2) a { transition-delay: 0.4s; }
.mega-nav-links li:nth-child(3) a { transition-delay: 0.5s; }
.mega-nav-links li:nth-child(4) a { transition-delay: 0.6s; }
.mega-nav-links li:nth-child(5) a { transition-delay: 0.7s; }

.menu-footer {
    position: relative;
    z-index: 2;
    padding: 0 10vw;
    margin-top: 6vh;
    display: flex;
    justify-content: space-between;
    color: var(--bg-dark);
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s var(--transition-smooth) 0.8s;
}

.fullscreen-menu.is-open .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-info {
    display: flex;
    gap: 40px;
    font-size: 1.1rem;
}

.menu-socials { display: flex; gap: 20px; }

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5vh;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.85) 100%);
}

.hero-img {
    width: 100%;
    height: 120%; /* For parallax */
    object-fit: cover;
    transform: translateY(0);
    position: absolute;
    top: -10%;
    left: 0;
}

.hero-text-container {
    position: relative;
    z-index: 1;
    padding: 0 4vw;
}

.line-wrap {
    overflow: hidden;
    display: block;
}

.hero-title .line {
    display: block;
    font-size: clamp(3rem, 8vw, 11rem);
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 300;
    transform: translateY(110%);
}

.hero-title.active .line {
    transform: translateY(0);
    transition: transform 1.2s var(--transition-snappy);
}

.hero-title .line-wrap:nth-child(1) .line { transition-delay: 1.4s; }
.hero-title .line-wrap:nth-child(2) .line { transition-delay: 1.55s; text-transform: none; color: var(--accent); }
.hero-title .line-wrap:nth-child(3) .line { transition-delay: 1.7s; }


.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4vh;
}

.hero-desc {
    max-width: 400px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #aeaeae;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transform: translateY(-100%);
    animation: scrollDraw 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDraw {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Marquee Effect */
.marquee-section {
    padding: 3vh 0;
    border-top: 1px solid var(--gray-lines);
    border-bottom: 1px solid var(--gray-lines);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-inner {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    padding: 0 3vw;
    color: var(--accent);
}

.marquee-item .dot {
    display: inline-block;
    margin-left: 3vw;
    font-size: 1rem;
    color: var(--text-light);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Modern Minimalist About Section */
.about-modern {
    padding-top: 15vh;
    padding-bottom: 10vh;
}
.about-header {
    margin-bottom: 10vh;
}
.about-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 3vh;
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}
.about-statement {
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    max-width: 80%;
    color: var(--text-light);
}
.about-statement .accent-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}

.about-body {
    display: flex;
    justify-content: space-between;
    gap: 8vw;
    align-items: flex-start;
}
.about-text-col {
    flex: 1;
    font-size: 1.15rem;
    color: #999;
    line-height: 1.8;
}
.about-text-col p {
    margin-bottom: 2.5vh;
}

.about-metrics {
    display: flex;
    gap: 4vw;
    margin-top: 6vh;
    padding-top: 4vh;
    border-top: 1px solid var(--gray-lines);
}
.metric {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.metric .m-num {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--text-light);
    line-height: 1;
}
.metric .m-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.about-img-col {
    flex: 1.2;
    position: relative;
    height: 70vh;
    overflow: hidden;
}
.about-img-col img {
    width: 100%;
    height: 130%; /* For parallax */
    object-fit: cover;
    position: absolute;
    top: -15%;
    left: 0;
}

/* Minimalist Services Section */
.services-minimal {
    padding-top: 5vh;
    padding-bottom: 15vh;
}
.services-flex {
    display: flex;
    justify-content: space-between;
    gap: 8vw;
}
.s-left {
    flex: 1;
}
.s-right {
    flex: 1.5;
    margin-top: 2vh;
}
.services-list {
    width: 100%;
}
.s-item {
    display: flex;
    align-items: center;
    padding: 4vh 0;
    transition: transform 0.4s ease;
}
.s-item:hover {
    transform: translateX(20px);
}
.s-item:hover .s-name {
    color: var(--accent);
}
.s-num {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: #666;
    width: 60px;
}
.s-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    transition: color 0.4s ease;
}
@media screen and (max-width: 1024px) {
    .services-flex {
        flex-direction: column;
        gap: 5vh;
    }
}

/* Premium Projects Grid */
.projects-premium {
    padding-top: 15vh;
    padding-bottom: 10vh;
}
.projects-header {
    display: flex;
    align-items: center;
    gap: 4vw;
    margin-bottom: 10vh;
}
.huge-heading {
    font-size: clamp(4rem, 8vw, 10rem);
    font-family: var(--font-serif);
    line-height: 1;
}
.header-line {
    flex: 1;
    height: 1px;
    background-color: var(--gray-lines);
}
.header-desc {
    max-width: 300px;
    color: #999;
    font-size: 1rem;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4vw;
}
.project-card {
    display: block;
    cursor: none; 
}
.project-card .p-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 2vh;
    background-color: #111;
}
.project-card .p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.project-card:hover .p-img img {
    transform: scale(1.05);
}
.p-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.project-card:hover .p-overlay {
    opacity: 1;
}
.p-info h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 5px;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.project-card:hover .p-info h3 {
    color: var(--accent);
}
.p-info p {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Specific Grid Alignments */
.project-card.large { grid-column: span 8; }
.project-card.large .p-img { height: 70vh; }

.project-card.tall { grid-column: span 4; }
.project-card.tall .p-img { height: 70vh; }

.project-card.square { grid-column: span 5; }
.project-card.square .p-img { height: 50vh; }

.project-card.wide { grid-column: span 7; }
.project-card.wide .p-img { height: 50vh; }

.projects-footer {
    margin-top: 10vh;
    text-align: center;
}

/* Primary Generic Button */
.btn-primary {
    display: inline-block;
    padding: 20px 40px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    transition: background 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}
.btn-primary:hover {
    color: var(--bg-dark);
}
.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Adjustments for Grid */
@media screen and (max-width: 1024px) {
    .about-statement { max-width: 100%; }
    .about-body { flex-direction: column-reverse; gap: 5vh; }
    .about-img-col { width: 100%; height: 50vh; }
    .about-text-col { width: 100%; }
    
    .project-card.large, .project-card.tall, .project-card.square, .project-card.wide {
        grid-column: span 12;
    }
    .project-card .p-img { height: 50vh !important; }
}


/* Visual Break Parallax */
.visual-break {
    position: relative;
    height: 120vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

.visual-wrapper img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
}

.floating-text {
    position: relative;
    z-index: 2;
    font-size: clamp(5rem, 12vw, 15rem);
    text-transform: uppercase;
    text-align: center;
    line-height: 0.85;
}

.mix-diff {
    mix-blend-mode: difference;
    color: #fff;
}

/* Giant Footer */
.mega-footer {
    background-color: #050505;
    padding-top: 15vh;
}

.cta-wrapper {
    width: 100%;
    margin-bottom: 15vh;
}

.cta-subtitle {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    display: block;
    margin-bottom: 3vh;
}

.cta-main-text {
    position: relative;
    display: flex;
    align-items: center;
}

.email-link-modern {
    font-size: clamp(1.8rem, 5vw, 6rem);
    font-family: var(--font-serif);
    line-height: 1;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3vw;
    position: relative;
    transition: color 0.4s ease;
    flex-wrap: wrap;
}

.email-link-modern:hover {
    color: var(--accent);
}

.cta-arrow {
    width: clamp(50px, 8vw, 100px);
    height: clamp(50px, 8vw, 100px);
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s ease;
}

.cta-arrow svg {
    width: 40%;
    height: 40%;
}

.email-link-modern:hover .cta-arrow {
    transform: rotate(45deg) scale(1.1);
    background-color: #fff;
}

.cta-line {
    width: 100%;
    height: 1px;
    background-color: var(--gray-lines);
    margin-top: 5vh;
    position: relative;
    overflow: hidden;
}

.cta-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-wrapper:hover .cta-line::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-middle {
    padding: 8vh 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4vw;
}

.f-brand .logo {
    padding: 0;
    margin: 0 0 20px 0;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

.f-brand p {
    color: #999;
    line-height: 1.6;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
}

.f-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.f-col h4 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.f-col li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.f-col li:hover {
    color: #fff;
}

.f-col a {
    color: #ccc;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.f-col a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-map {
    width: 100%;
    margin-bottom: 2vh;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: none;
}

.map-link-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    background: rgba(5, 5, 5, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: none;
}

.footer-map:hover .map-link-overlay {
    opacity: 1;
}

.map-btn-text {
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-map:hover .map-btn-text {
    transform: translateY(0);
}

.footer-map iframe {
    width: 100%;
    height: 40vh;
    filter: grayscale(100%) contrast(90%) hue-rotate(180deg) invert(85%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Let overlay handle clicks */
}

.footer-map:hover iframe {
    opacity: 1;
}

.footer-bottom {
    padding: 4vh 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom .mix-diff {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

/* Reveal Animations Classes */
.reveal-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s var(--transition-snappy);
}

.reveal-fade.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 6vh;
    }
}

@media screen and (max-width: 768px) {
    .hero-title .line { font-size: clamp(2.5rem, 10vw, 5rem); }
    .about-statement { font-size: clamp(1.8rem, 6vw, 3rem); }
    .huge-heading { font-size: clamp(3rem, 12vw, 5rem); }
    .floating-text { font-size: clamp(3rem, 15vw, 6rem); }
    .email-link-modern { font-size: clamp(1.8rem, 8vw, 4rem); }
    .metric .m-num { font-size: 2.5rem; }
    
    .about-metrics {
        flex-direction: column;
        gap: 20px;
    }
    .metric {
        align-items: center;
        text-align: center;
    }

    .menu-footer {
        flex-direction: column;
        gap: 20px;
    }
    .menu-info {
        flex-direction: column;
        gap: 10px;
        font-size: 1rem;
    }

    .f-links-grid {
        grid-template-columns: 1fr;
        gap: 4vh;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Disable custom cursor on mobile */
    .cursor-dot, .cursor-outline { display: none; }
    body, a, button, input, textarea, select, .menu-toggle, .project-row { cursor: auto !important; }
}
