@font-face {
    font-family: 'round_8four';
    src: url('../assets/fonts/round8-four-webfont.woff2') format('woff2'),
         url('../assets/fonts/round8-four-webfont.woff') format('woff'),
         url('../assets/fonts/round8-four-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Colors */
    --black: #050505;
    --dark-grey: #111111;
    --white: #ffffff;
    --off-white: #E0E0E0;
    --accent: #FF4500; /* Electric Orange */
    
    /* Layout Variables */
    --site-margin: 10rem;
    --header-height: 2.5rem;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'round_8four', sans-serif;
    
    /* Easing */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    
    /* Global State Variables */
    --nav-progress: 0;
}

/* Responsive Safe-Zone Scaling */
@media (max-width: 1200px) { :root { --site-margin: 6rem; } }
@media (max-width: 1024px) { :root { --site-margin: 4rem; } }
@media (max-width: 768px) { :root { --site-margin: 1.5rem; --header-height: 1.5rem; } }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    width: 100%;
    position: relative;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-main);
    min-height: 100dvh; /* Dynamic viewport height for mobile browser bars */
}

/* Custom Cursor - Hide on touch devices */
@media (hover: none) {
    #cursor, #cursor-follower { display: none !important; }
}

#cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 69, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

body:hover #cursor { opacity: 1; }

.interactable-hover #cursor {
    width: 60px;
    height: 60px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid var(--accent);
    mix-blend-mode: normal;
}
.interactable-hover #cursor::after {
    content: attr(data-cursor-text);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
}
.interactable-hover #cursor-follower {
    opacity: 0;
}

/* Dynamic Navbar Elements */
#zoom-text {
    position: fixed;
    /* 
     * Center-aligned with nav-links (top: var(--header-height))
     */
    top: calc(50% - (var(--nav-progress) * (50% - var(--header-height))));
    left: calc(50% - (var(--nav-progress) * (50% - var(--site-margin)))); 

    /* Scale from 1 (hero) to nav ratio */
    --nav-scale: 0.25; 
    
    /* 
     * Interpolate X translation: -50% (center) to 0% (left-aligned)
     * Keep Y translation at -50% to stay centered on the 'top' line
     */
    transform: translate3d(calc(-50% * (1 - var(--nav-progress))), -50%, 0) 
               scale(calc(1 - (var(--nav-progress) * (1 - var(--nav-scale)))));

    /* Static hero font size */
    font-size: clamp(4rem, 15vw, 11rem);
    
    font-family: var(--font-heading);
    font-weight: normal; 
    letter-spacing: normal;
    line-height: 1; 
    color: var(--accent);
    margin: 0;
    z-index: 3000;
    white-space: nowrap;
    text-transform: uppercase;
    will-change: transform, top, left, opacity;
    visibility: visible !important;
    pointer-events: none;
    text-align: center;
    
    opacity: 0;
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
    display: flex;
    justify-content: center;
    gap: 0.15em;
}

.reveal-wrapper {
    display: inline-block;
    /* This clip-path acts as a window: 0% at top/bottom, but -100% on sides to NEVER cut the edges of letters */
    clip-path: inset(0% -100% 0% -100%); 
    vertical-align: middle;
}

.reveal-text {
    display: inline-block;
    transform: translateY(-115%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

#zoom-text.in-view .reveal-text {
    transform: translateY(0);
}

/* Staggering delays */
#zoom-text .reveal-wrapper:nth-child(2) .reveal-text {
    transition-delay: 0.1s;
}

#zoom-text .reveal-wrapper:nth-child(3) .reveal-text {
    transition-delay: 0.2s;
}

#zoom-text.in-view {
    opacity: 1;
}

#nav-links {
    position: fixed;
    top: var(--header-height);
    left: calc(50% + (var(--nav-progress) * 50%));
    /* 
     * Symmetrical to the logo: right edge at 7rem from the right
     */
    transform: translate3d(calc(-50% - (var(--nav-progress) * (50% + 7rem))), -50%, 0);
    display: flex;
    gap: 2.5rem;
    align-items: center;
    z-index: 3000;
    will-change: transform, left;
    height: 1.2rem;

    /* Entry Animation state */
    opacity: 0;
    transition: opacity 1s var(--ease-out-expo) 0.3s;
}

#nav-links.in-view {
    opacity: 1;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

/* Toggle colors for light sections */
body.dark-nav .nav-item {
    color: var(--black);
}

.nav-item:hover {
    color: var(--accent);
}
.nav-btn {
    padding: 0.8rem 1.8rem;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}
.nav-btn:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--site-margin);
}
.dark-panel {
    background: var(--black);
    color: var(--white);
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    height: 300vh;
    position: relative;
    background: var(--black);
}

.hero-sticky-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}
#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Instant-Load Background: First Optimized Frame */
    background: url('../assets/hero-frames-optimized/frame_0001.webp') no-repeat center center;
    background-size: cover;
    /* Force GPU layer */
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

#zoom-text {
    position: fixed;
    /* ... existing properties ... */
    will-change: transform, top, left, opacity;
    transform: translate3d(-50%, -50%, 0) scale(calc(1 - (var(--nav-progress) * (1 - var(--nav-scale)))));
    /* ... rest ... */
}

.bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* To allow parallax */
    opacity: 0.5;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15vh; /* Push down to center-ish under where logo starts */
}
.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2rem; /* Gap below the logo */
    will-change: opacity, transform;
}

/* Arrival Content: Bottom Right Positioning */
.arrival-container {
    position: absolute;
    bottom: 6rem;
    right: 7rem; 
    text-align: right;
    z-index: 20;
    pointer-events: none;
    max-width: 450px;
}

.arrival-heading {
    font-family: var(--font-heading); /* Reverted to stylized logo font */
    font-weight: normal;
    font-size: clamp(2rem, 4vw, 3.5rem); 
    color: var(--accent);
    line-height: 1.1; /* Tightened line height */
    text-transform: uppercase;
    margin-bottom: 0.5rem; /* Significantly reduced space before description */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.2em; /* Tightened gap between words */
    text-shadow: 0 5px 20px rgba(0,0,0,0.5); /* Decreased intensity for a subtler feel */
}

/* Specific reveal behavior for arrival heading: Slides UP */
.arrival-heading .reveal-wrapper {
    display: inline-block;
    clip-path: inset(-20% -100% -20% -100%); 
    vertical-align: middle;
}

.arrival-heading .reveal-text {
    display: inline-block;
    transform: translateY(115%); /* Start BELOW the window */
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

/* Description style (matches subtext behavior) */
.arrival-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
    will-change: opacity, transform;
    text-shadow: 0 5px 20px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5); /* More intense shadow */
}

/* Reveal Trigger Classes */
.arrival-container.show .arrival-heading .reveal-text {
    transform: translateY(0);
}

/* Staggering word delays for arrival */
.arrival-container.show .reveal-wrapper:nth-child(2) .reveal-text { transition-delay: 0.1s; }
.arrival-container.show .reveal-wrapper:nth-child(3) .reveal-text { transition-delay: 0.2s; }
.arrival-container.show .reveal-wrapper:nth-child(4) .reveal-text { transition-delay: 0.3s; }

.arrival-container.show .arrival-desc {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 50;
    transition: opacity 0.4s ease;
}
.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 50%;
    background: white;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* About Section */
.about-section {
    padding: 10rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.lead-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--off-white);
    margin-bottom: 4rem;
}
.founder-card {
    border-left: 2px solid var(--accent);
    padding-left: 2rem;
}
.founder-name {
    font-size: 2rem;
    font-weight: 700;
}
.founder-role {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.founder-bio {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.about-visual .img-wrapper {
    height: 80vh;
    overflow: hidden;
    border-radius: 20px;
}
.about-visual img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
}

/* Services Stack */
.services-section {
    padding: 10rem 0 5rem;
    background: var(--white);
    height: 400vh; /* Increased to allow all cards to finish arrival before section ends */
    position: relative;
    color: var(--black);
}
.services-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}
.services-intro p {
    font-size: 1.25rem;
    color: #666;
}

.card-stack-wrapper {
    position: sticky;
    top: calc(50vh - 250px); 
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    margin: 0 auto;
    max-width: 1400px; /* Increased width */
    padding: 0 4rem;
}
.service-card {
    position: absolute;
    width: 100%;
    max-width: 900px; /* Reduced from 1200px */
    height: 480px; /* Slightly shorter for better aspect ratio */
    background: var(--black);
    color: var(--white);
    border-radius: 40px; /* Softer corners */
    padding: 4rem;
    box-shadow: 0 60px 120px rgba(0,0,0,0.5);
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    transition: box-shadow 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.service-card:hover {
    box-shadow: 0 40px 100px rgba(255, 69, 0, 0.25);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}
.card-header h3 {
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}
.card-header h4 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1;
}
.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for wide layout */
    gap: 2rem;
}
.service-list li {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.service-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Work Section - Sticky Horizontal Scroll */
.work-section {
    height: 600vh; /* Extra height for long horizontal scroll */
    background: var(--black);
    position: relative;
    padding: 0;
}

.work-container {
    padding: 0;
    height: 100%;
}

.work-header {
    position: relative;
    padding: 10rem 4rem 5rem; text-align: center; z-index: 10;
}

.work-slider-wrapper {
    position: sticky; top: 0; height: 100vh; width: 100%; display: flex; align-items: center; overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.work-slider {
    display: flex; gap: 5vw; padding: 0 35vw; width: max-content; will-change: transform;
}

.work-item {
    width: 30vw; flex-shrink: 0; transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo); opacity: 0.6; transform: scale(0.85);
}

.work-media {
    position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: var(--dark-grey);
}

.work-media img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out-expo);
}

.work-item:hover .work-media img {
    transform: scale(1.05);
}

.work-details {
    margin-top: 2rem; transition: transform 0.8s var(--ease-out-expo);
}

.work-details h4 {
    font-size: 1.8rem; font-weight: 900; margin-bottom: 0.5rem;
}

.work-details p {
    color: var(--accent); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 700;
}

.play-hint {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.4s;
}

.work-item:hover .play-hint {
    opacity: 1;
}

.play-hint span {
    padding: 1rem 2.5rem; background: var(--accent); color: var(--black); border-radius: 40px; font-weight: 900; text-transform: uppercase; font-size: 0.9rem;
}

/* Contact Footer */
.contact-section {
    padding: 15rem 0 5rem; background: var(--white); color: var(--black); overflow: hidden;
}
.massive-title {
    font-size: clamp(3rem, 15vw, 12rem); font-family: var(--font-heading); font-weight: normal; letter-spacing: normal; line-height: 0.8; margin-bottom: 8rem; text-align: center; text-transform: uppercase; color: var(--black); width: 100%; position: relative; transform: scale(0.6); opacity: 1 !important; transition: transform 0.1s linear; will-change: transform;
}

.massive-title span {
    display: inline-block; opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s;
}

.massive-title span.typed {
    opacity: 1; transform: translateY(0);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 2fr; align-items: flex-start; gap: 6rem; padding: 6rem var(--site-margin); border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 4rem; 
}
.contact-info { text-align: left; }
.contact-form-wrapper { width: 100%; }
.contact-form-container {
    position: relative; background: rgba(17, 17, 17, 0.03); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 40px; padding: 3rem; overflow: hidden; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.custom-contact-form {
    display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem;
}
.form-group { position: relative; width: 100%; }
.form-input {
    width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 15px; padding: 1.2rem 1.5rem; font-family: var(--font-main); font-size: 1rem; color: var(--black); outline: none; transition: all 0.3s var(--ease-out-expo);
}
.form-input::placeholder { color: rgba(0, 0, 0, 0.4); }
.form-input:focus {
    background: var(--white); border-color: var(--accent); box-shadow: 0 0 20px rgba(255, 69, 0, 0.1);
}
.form-textarea { min-height: 150px; resize: none; }
.form-select { appearance: none; cursor: pointer; }
.submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 1rem; background: var(--black); color: var(--white); border: none; border-radius: 15px; padding: 1.2rem; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: all 0.4s var(--ease-out-expo); margin-top: 1rem;
}
.submit-btn:hover {
    background: var(--accent); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}
.submit-btn svg { transition: transform 0.4s var(--ease-out-expo); }
.submit-btn:hover svg { transform: translate(5px, -5px); }
.form-footer-socials {
    display: flex; justify-content: flex-end; gap: 1.2rem; padding: 0; background: transparent; border: none; box-shadow: none; z-index: 10;
}
.social-icon {
    color: var(--black); display: flex; align-items: center; justify-content: center; transition: color 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.social-icon:hover { color: var(--accent); transform: translateY(-2px); }
.label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: #666; margin-bottom: 1.5rem; font-weight: 700; }
.contact-link {
    display: block; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: var(--black); text-decoration: none; margin-bottom: 1rem; transition: color 0.3s;
}
.contact-link:hover { color: var(--accent); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; font-size: 0.9rem; color: #666;
}
.back-to-top { cursor: pointer; font-weight: 600; color: var(--black); transition: color 0.3s; }
.back-to-top:hover { color: var(--accent); }

/* HAMBURGER & NAV PANEL */
.hamburger {
    display: none; position: fixed; top: 2.2rem; right: 1.5rem; z-index: 5000; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.hamburger-line { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease; }
body.dark-nav .hamburger-line { background: var(--black); }
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger.open .hamburger-line { background: var(--white); }

.nav-panel {
    display: none; position: fixed; top: 0; right: 0; width: 100%; height: 100dvh; background: rgba(5, 5, 5, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); z-index: 4999; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transform: translateX(100%); transition: opacity 0.35s ease, transform 0.35s var(--ease-out-expo);
}
.nav-panel.open { opacity: 1; pointer-events: auto; transform: translateX(0); }
.nav-panel-link { color: var(--white); text-decoration: none; font-size: 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo), color 0.3s ease; }
.nav-panel.open .nav-panel-link { opacity: 1; transform: translateY(0); }
.nav-panel.open .nav-panel-link:nth-child(1) { transition-delay: 0.1s; }
.nav-panel.open .nav-panel-link:nth-child(2) { transition-delay: 0.15s; }
.nav-panel.open .nav-panel-link:nth-child(3) { transition-delay: 0.2s; }
.nav-panel.open .nav-panel-link:nth-child(4) { transition-delay: 0.25s; }
.nav-panel.open .nav-panel-link:nth-child(5) { transition-delay: 0.3s; }
.nav-panel-link:hover, .nav-panel-link:active { color: var(--accent); }
.nav-panel-btn { margin-top: 1rem; padding: 0.9rem 2rem; background: var(--accent); border-radius: 30px; font-size: 1rem; letter-spacing: 0.05em; }

/* MOBILE RESPONSIVE OVERRIDES */
@media (max-width: 768px) {
    * { max-width: 100vw; }
    .container { padding: 0 1.5rem; width: 100%; }
    #zoom-text {
        left: calc(50% - (var(--nav-progress) * (50% - 4.5rem))) !important;
        top: calc(50% - (var(--nav-progress) * (50% - 2.5rem))) !important;
        font-size: clamp(4.5rem, 15vw, 6.5rem) !important;
        --nav-scale: 0.34;
        transform: translate3d(-50%, -50%, 0) scale(calc(1 - (var(--nav-progress) * (1 - var(--nav-scale))))) !important;
        text-align: center; width: auto; padding: 0; white-space: nowrap;
    }
    .hero-content { margin-top: 12vh; width: 100%; text-align: center; }
    .hero-subtext { font-size: clamp(0.75rem, 3.5vw, 0.9rem) !important; letter-spacing: 0.15em; margin-top: 2rem !important; padding: 0 1.5rem; opacity: 1 !important; transform: none !important; width: 100%; text-align: center; }
    .scroll-indicator { bottom: 2rem; left: 0; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: none; font-size: 0.8rem; margin: 0; padding: 0; }
    #nav-links { top: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; justify-content: center; gap: 1rem; width: 100%; max-width: 100vw; z-index: 5001; transition: all 0.5s var(--ease-out-expo); }
    body.nav-scrolled #nav-links { left: auto; right: 1.5rem; transform: none; width: auto; justify-content: flex-end; }
    #nav-links .nav-item { display: block; font-size: 0.75rem; opacity: 1; transition: opacity 0.4s ease; }
    body.nav-scrolled #nav-links .nav-item { opacity: 0; pointer-events: none; }
    #nav-links .nav-btn { padding: 0.5rem 1rem; font-size: 0.7rem; transition: all 0.5s var(--ease-out-expo); position: relative; opacity: 1; visibility: visible; border-radius: 20px; white-space: nowrap; }
    body.nav-scrolled #nav-links .nav-btn { opacity: 0; visibility: hidden; transform: scale(0.8); pointer-events: none; }
    .hamburger { display: flex; top: 1.2rem; right: 1.2rem; padding: 10px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease, transform 0.4s ease; transform: scale(0.8); z-index: 5002; }
    body.nav-scrolled .hamburger { opacity: 1; pointer-events: auto; transform: scale(1); }
    .nav-panel { display: flex; }
    .section-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 1.5rem; }
    .lead-text { font-size: clamp(1rem, 3.5vw, 1.25rem); line-height: 1.7; margin-bottom: 2.5rem; }
    .founder-name { font-size: 1.5rem; }
    .founder-role { font-size: 0.8rem; }
    .founder-bio { font-size: 0.95rem; line-height: 1.7; }
    .about-section { padding: 5rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual .img-wrapper { height: 50vh; }
    .services-section { height: auto; padding: 5rem 0; }
    .services-container { height: auto; }
    .services-intro { margin-bottom: 2.5rem; }
    .services-intro p { font-size: 1rem; }
    .card-stack-wrapper { position: relative; top: 0; height: auto; display: flex; flex-direction: column; gap: 2rem; perspective: none; }
    .service-card { position: relative; height: auto; min-height: auto; padding: 2.5rem 1.5rem; transform: none !important; box-shadow: 0 20px 40px rgba(0,0,0,0.1); opacity: 1; }
    .service-card.card-slide-right { opacity: 0; transform: translateX(50px) !important; transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
    .service-card.card-slide-left { opacity: 0; transform: translateX(-50px) !important; transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
    .service-card.in-view { opacity: 1 !important; transform: translateX(0) !important; }
    .card-header h3 { font-size: 2.2rem; }
    .card-header h4 { font-size: 1.3rem; }
    .card-header { gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
    .service-list { grid-template-columns: 1fr; gap: 0.8rem; }
    .service-list li { font-size: 0.95rem; }
    
    /* WORK SECTION — SWIPE CAROUSEL */
    .work-section { height: auto; padding: 5rem 0; }
    .work-header { padding: 0 1.5rem 3rem; }
    .work-header p { font-size: 1rem; }
    .work-slider-wrapper { position: relative; height: auto; overflow-x: auto; overflow-y: hidden; padding: 2rem 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; mask-image: none !important; -webkit-mask-image: none !important; }
    .work-slider-wrapper::-webkit-scrollbar { display: none; }
    .work-slider-wrapper { -ms-overflow-style: none; scrollbar-width: none; }
    .work-slider { padding: 0 8vw; gap: 4vw; transform: none !important; }
    .work-item { width: 75vw; flex-shrink: 0; scroll-snap-align: center; opacity: 0.4; transform: scale(0.9) translateZ(0); transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo); }
    .work-item.mobile-active { opacity: 1 !important; transform: scale(1) translateZ(0) !important; }
    .work-media { aspect-ratio: 16 / 9; border-radius: 12px; background: #000; }
    .work-media img { width: 100%; height: 100%; object-fit: cover; }
    .work-details h4 { font-size: 1.3rem; }
    .work-details p { font-size: 0.75rem; }
    .work-details { margin-top: 1.2rem; }

    .contact-section { padding: 6rem 0 3rem; overflow: hidden; }
    .massive-title { font-size: clamp(2.5rem, 12vw, 6rem) !important; margin-bottom: 3rem; padding: 0 1rem; overflow-wrap: break-word; word-break: break-word; transform: none !important; opacity: 1 !important; }
    .massive-title span { opacity: 1 !important; transform: none !important; }
    .contact-grid { grid-template-columns: 1fr; padding: 0 var(--site-margin); gap: 3rem; }
    .contact-info { text-align: center; }
    .contact-form-container { padding: 1.5rem 1rem; }
    .form-footer-socials { position: relative; bottom: 0; right: 0; margin-top: 1.5rem; justify-content: center; background: transparent; box-shadow: none; border: none; padding: 0; }
    .label { font-size: 0.8rem; margin-bottom: 1rem; }
    .contact-link { font-size: clamp(1.2rem, 5vw, 1.8rem); margin-bottom: 0.8rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem 0; font-size: 0.8rem; }
    #cursor, #cursor-follower { display: none !important; }
}
