:root {
    /* Offbrand Inspired Palette */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-50: #0A0A0A;
    --color-gray-100: #111111;
    --color-gray-200: #1A1A1A;
    --color-gray-900: #E5E5E5;
    
    /* Accent Colors - Inspired by branding */
    --color-accent-1: #FF3366; /* Mauve Pink */
    --color-accent-2: #9966FF; /* Purple */
    --color-accent-3: #00CC99; /* Teal */
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Effects */
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--color-white);
}

/* Prelaunch Intro */
#prelaunch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

#prelaunch.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease, visibility 1s;
}

.logo-svg {
    width: 300px;
    height: 300px;
}

.logo-path {
    fill: none;
    stroke: var(--color-white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.o-accent {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
}

.prelaunch-subtitle {
    position: absolute;
    bottom: var(--space-xxl);
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0;
    font-weight: 300;
}

.skip-intro {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    padding: var(--space-xs) var(--space-lg);
    border-radius: 0;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}

.skip-intro:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Plop Container - Scroll Controlled */
.plop-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 1.5s var(--transition-smooth);
    overflow: hidden;
}

#plopCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Minimal Sticky Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl);
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
}

.header-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
}

.header-logo span {
    background: linear-gradient(45deg, var(--color-accent-1), var(--color-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

/* Sexy Search Button with Circle */
.search-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s var(--transition-smooth);
}

.search-button:hover::before {
    border-color: var(--color-white);
    transform: scale(1.1);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.search-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.search-button:hover {
    opacity: 1;
}

/* Search Modal with Solid White BG */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 1000;
    padding: var(--space-xxl) var(--space-xl);
    display: none;
    opacity: 0;
}

.search-modal.active {
    display: block;
    opacity: 1;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xxl);
}

.search-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-black);
    cursor: pointer;
    padding: var(--space-xs);
    font-weight: 300;
    opacity: 0.5;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    opacity: 1;
}

.search-input-container {
    max-width: 800px;
    margin: 0 auto var(--space-xxl);
}

.search-input {
    width: 100%;
    padding: var(--space-xl) 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-black);
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-bottom-color: var(--color-black);
}

.search-input::placeholder {
    color: rgba(0,0,0,0.2);
}

.search-suggestions {
    max-width: 800px;
    margin: 0 auto;
}

.search-suggestions h3 {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
    color: rgba(0,0,0,0.5);
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.suggestion-tag {
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    color: rgba(0,0,0,0.7);
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.suggestion-tag:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Fixed Menu Button - Updated to match search-close */
.menu-button {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: all 0.4s var(--transition-smooth);
    padding: 0;
}

.menu-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--transition-smooth);
}

.menu-button:hover::before {
    border-color: var(--color-white);
    transform: scale(1.1);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* Updated to match search-close style when open */
.menu-button.open {
    background: transparent;
    color: var(--color-white);
    transform: rotate(45deg);
}

.menu-button.open::before {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.menu-button.open:hover::before {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--color-white);
    transition: all 0.4s var(--transition-smooth);
    position: absolute;
}

.menu-button span:first-child {
    transform: translateY(-5px);
}

.menu-button span:last-child {
    transform: translateY(5px);
}

.menu-button.open span:first-child {
    transform: rotate(45deg) translate(0, 0);
}

.menu-button.open span:last-child {
    transform: rotate(-45deg) translate(0, 0);
}

/* Menu Modal with Solid White BG & Exit Button */
.menu-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 150;
    padding: var(--space-xxl) var(--space-xl);
    transition: right 0.8s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-modal.open {
    right: 0;
}

.menu-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xxl);
}

.menu-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-black);
    cursor: pointer;
    padding: var(--space-xs);
    font-weight: 300;
    opacity: 0.5;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    opacity: 1;
}

.nav-links {
    list-style: none;
    margin-bottom: var(--space-xxl);
}

.nav-links li {
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateX(50px);
}

.nav-links a {
    color: var(--color-black);
    font-size: 3rem;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding: var(--space-xs) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: width 0.5s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-contact {
    margin-top: auto;
    opacity: 0;
    transform: translateY(30px);
}

.menu-email {
    color: var(--color-black);
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    display: inline-block;
    font-weight: 300;
    opacity: 0.7;
}

.menu-email:hover {
    opacity: 1;
}

/* Brands Carousel */
.brands-section {
    padding: var(--space-xxl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.brands-section h2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.brands-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-lg) 0;
}

.brands-carousel {
    display: flex;
    gap: var(--space-xxl);
    animation: scrollBrands 30s linear infinite;
    padding: var(--space-lg) 0;
}

.brands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 12));
    }
}

.brand-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brand-logo:hover {
    color: var(--color-white);
    transform: scale(1.05);
}

/* Selected Projects Auto-Carousel */
.work-carousel-section {
    padding: var(--space-xxl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.work-carousel-section h2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    color: rgba(255,255,255,0.5);
}

.work-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-lg) 0;
}

.work-carousel {
    display: flex;
    gap: var(--space-lg);
    animation: scrollWork 40s linear infinite;
    padding: var(--space-lg) 0;
}

.work-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollWork {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 8));
    }
}

.work-card {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    background: var(--color-gray-100);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-white);
}

.work-card-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-accent-1), var(--color-accent-2));
    opacity: 0.8;
    transition: all 0.4s var(--transition-smooth);
}

.work-card:hover .work-card-image {
    opacity: 1;
}

.work-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

.work-card:hover .work-card-info {
    transform: translateY(0);
    opacity: 1;
}

.work-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.work-card p {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 1001;
    display: none;
    opacity: 0;
}

.project-modal.active {
    display: block;
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.modal-close:hover::before {
    border-color: var(--color-white);
    transform: scale(1.1);
}

.modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-images {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.modal-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.modal-image-container.active {
    display: block;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-xl);
    transform: translateY(-50%);
}

.modal-nav-button {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav-button:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

.modal-info {
    padding: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    background: var(--color-gray-50);
}

.modal-info h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: var(--space-md);
}

.modal-info p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 600px;
}

/* Sections with Plop-Aligned Content - FIXED */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
    text-align: center;
    transition: transform 1.5s var(--transition-smooth), opacity 1.5s var(--transition-smooth);
    transform: translateX(0);
}

.hero h1 {
    font-size: clamp(6rem, 15vw, 20rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    position: relative;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
    opacity: 0.3;
}

.hero h1 .hero-accent {
    -webkit-text-fill-color: var(--color-white);
    -webkit-text-stroke: 0;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: var(--space-xl);
    color: rgba(255,255,255,0.5);
}

/* Statement Section - Plop on RIGHT, content starts AFTER plop */
.statement {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-xxl) var(--space-xl);
    position: relative;
}

.statement-content {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 3;
    transition: all 1.5s var(--transition-smooth);
    opacity: 1;
    margin-left: auto; /* Push content to right when plop is on left */
    margin-right: 0;
}

/* When plop is on LEFT, content moves to RIGHT */
.statement.plop-left .statement-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: 40%;
}

/* When plop is on RIGHT, content moves to LEFT */
.statement.plop-right .statement-content {
    margin-left: 0;
    margin-right: auto;
    padding-right: 40%;
}

.statement h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    position: relative;
    letter-spacing: -0.02em;
}

.statement p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    color: rgba(255,255,255,0.7);
    margin-top: var(--space-xl);
}

/* Services Section - Plop on LEFT, content starts AFTER plop */
.services {
    min-height: 100vh;
    padding: var(--space-xxl) var(--space-xl);
    position: relative;
    display: flex;
    align-items: center;
}

.services-content {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 3;
    transition: all 1.5s var(--transition-smooth);
    opacity: 1;
    margin-right: auto; /* Push content to left when plop is on right */
    margin-left: 0;
}

/* When plop is on LEFT, content moves to RIGHT */
.services.plop-left .services-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: 40%;
}

/* When plop is on RIGHT, content moves to LEFT */
.services.plop-right .services-content {
    margin-left: 0;
    margin-right: auto;
    padding-right: 40%;
}

.services h2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xxl);
    color: rgba(255,255,255,0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.6s var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    transition: width 0.8s var(--transition-smooth);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    padding-left: var(--space-lg);
    border-bottom-color: transparent;
}

.service-number {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    margin-bottom: var(--space-md);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    color: var(--color-accent-1);
    transform: translateX(5px);
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: var(--space-sm);
    transition: all 0.4s ease;
}

.service-card:hover h3 {
    color: var(--color-white);
    transform: translateX(5px);
}

.service-card p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    transition: all 0.4s ease;
    max-width: 320px;
}

.service-card:hover p {
    color: rgba(255,255,255,0.7);
    transform: translateX(5px);
}

.cta {
    min-height: 100vh;
    padding: var(--space-xxl) var(--space-xl);
    position: relative;
    display: flex;
    align-items: center;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.cta h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.cta-button {
    display: inline-block;
    padding: var(--space-md) var(--space-xxl);
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--color-black);
}

.cta-button:hover::before {
    transform: translateX(0);
}

.footer {
    padding: var(--space-xxl) var(--space-xl);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.footer-logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-right: var(--space-xl);
    transition: color 0.3s ease;
    position: relative;
    padding: var(--space-xs) 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

.scroll-indicator {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    z-index: 100;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(5rem, 12vw, 12rem);
    }
    
    .nav-links a {
        font-size: 2.5rem;
    }
    
    .brand-logo {
        width: 160px;
        height: 50px;
        font-size: 1rem;
    }
    
    .work-card {
        width: 240px;
        height: 320px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    /* Adjust content padding for tablet */
    .statement.plop-left .statement-content,
    .statement.plop-right .statement-content,
    .services.plop-left .services-content,
    .services.plop-right .services-content {
        padding-left: 30%;
        padding-right: 30%;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: var(--space-lg);
    }
    
    .hero, .statement, .brands-section, .work-carousel-section, .services, .cta, .footer {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .hero h1 {
        font-size: clamp(4rem, 10vw, 8rem);
    }
    
    .nav-links a {
        font-size: 2rem;
    }
    
    .search-input {
        font-size: 2rem;
    }
    
    .brands-carousel {
        gap: var(--space-xl);
        animation: scrollBrands 20s linear infinite;
    }
    
    .brand-logo {
        width: 120px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .work-carousel {
        animation: scrollWork 30s linear infinite;
        gap: var(--space-md);
    }
    
    @keyframes scrollWork {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 8));
        }
    }
    
    .work-card {
        width: 260px;
        height: 347px;
    }
    
    .modal-nav-button {
        width: 40px;
        height: 40px;
    }
    
    .menu-button {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 44px;
        height: 44px;
    }
    
    .scroll-indicator {
        left: var(--space-lg);
        bottom: calc(var(--space-lg) + 60px);
    }
    
    .service-card:hover {
        padding-left: var(--space-md);
    }
    
    /* Mobile: Less padding for content sections */
    .statement.plop-left .statement-content,
    .statement.plop-right .statement-content,
    .services.plop-left .services-content,
    .services.plop-right .services-content {
        padding-left: 20%;
        padding-right: 20%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* On mobile, content should take full width but still respect plop position */
    .statement .statement-content,
    .services .services-content {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    
    /* Keep the alternating layout on mobile too */
    .statement.plop-left .statement-content {
        margin-left: auto;
        margin-right: 0;
    }
    
    .statement.plop-right .statement-content {
        margin-left: 0;
        margin-right: auto;
    }
    
    .services.plop-left .services-content {
        margin-left: auto;
        margin-right: 0;
    }
    
    .services.plop-right .services-content {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .statement h2, .cta h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .nav-links a {
        font-size: 1.75rem;
    }
    
    .menu-button {
        width: 40px;
        height: 40px;
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .scroll-indicator {
        left: var(--space-md);
        bottom: calc(var(--space-md) + 55px);
    }
    
    .search-modal {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .search-input {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        width: 100px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .work-card {
        width: 240px;
        height: 320px;
    }
    
    .modal-info h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    /* On small mobile, content is centered but still respects plop side */
    .statement .statement-content,
    .services .services-content {
        text-align: center;
        max-width: 100%;
    }
    
    .statement p {
        margin-left: auto;
        margin-right: auto;
    }
}