:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #3b82f6;
    /* Cobalt Blue */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --container-width: 90vw;
}

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

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-follower {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

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

/* Typography & Layout */
.container {
    width: var(--container-width);
    margin: 0 auto;
}

section {
    padding: 10vh 0;
}

/* Hero */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 12vw;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    mix-blend-mode: difference;
    margin: 0;
    padding: 0;
}

.hero-text .line {
    display: block;
    overflow: hidden;
}

.hero-cta-wrapper {
    margin-top: 6vh;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
    mix-blend-mode: difference;
}

.cta-button {
    display: inline-block;
    padding: 0.5rem 0;
    background: transparent;
    color: #fff;
    border: none;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: opacity 0.3s;
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button:hover {
    opacity: 0.8;
    background: transparent;
    transform: none;
    color: #fff;
}

.cta-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* Statement */
.statement-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.statement-text {
    font-family: var(--font-serif);
    font-size: 4vw;
    line-height: 1.2;
    max-width: 80%;
}

.highlight {
    color: var(--accent-color);
    font-style: italic;
}

/* Work */
.work-section {
    padding-bottom: 20vh;
}

.section-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 2px;
}

.work-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15vh;
}

.work-info {
    width: 30%;
    position: sticky;
    top: 20vh;
}

.work-info h3 {
    font-family: var(--font-serif);
    font-size: 4vw;
    line-height: 1;
    margin-bottom: 1rem;
}

.work-cat {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.work-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    max-width: 300px;
}

.work-image-wrapper {
    width: 60%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.work-image {
    width: 100%;
    height: 120%;
    /* For parallax */
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.work-item:hover .work-image {
    filter: grayscale(0%);
}

/* Services List */
.services-list-section {
    padding: 10vh 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row {
    display: flex;
    align-items: baseline;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding 0.3s;
}

.service-row:hover {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.service-num {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: #666;
    width: 10%;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 5vw;
    width: 60%;
    font-weight: 400;
}

.service-desc {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: #888;
}

/* Footer */
.footer-section {
    padding: 15vh 0 5vh;
    background: #fff;
    color: #000;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-left {
    width: 40%;
}

.footer-cta h2 {
    font-family: var(--font-serif);
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.email-link {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

/* Form Styles */
.footer-form-wrapper {
    width: 50%;
    padding-top: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #000;
    /* Thicker, bolder line */
    padding: 1.5rem 0;
    /* More breathing room */
    font-family: var(--font-sans);
    font-size: 1.1rem;
    /* Larger text */
    color: #000;
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s, padding-left 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--accent-color);
    padding-left: 1rem;
    /* Subtle interaction */
}

.submit-btn {
    align-self: flex-start;
    background: transparent;
    color: #000;
    border: none;
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s;
    margin-top: 2rem;
}

.submit-btn::after {
    content: '→';
    /* Arrow icon */
    display: inline-block;
    margin-left: 1rem;
    transition: transform 0.3s;
}

.submit-btn:hover {
    opacity: 0.7;
    transform: none;
    background: transparent;
}

.submit-btn:hover::after {
    transform: translateX(10px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.socials a {
    color: #000;
    text-decoration: none;
    margin-left: 2rem;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90vw;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 15vw;
        /* Slightly smaller for better fit */
    }

    /* Statement */
    .statement-text {
        font-size: 1.8rem;
        /* Readable size */
    }

    /* Work */
    .work-item {
        flex-direction: column;
        margin-bottom: 10vh;
    }

    .work-info {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .work-info h3 {
        font-size: 3rem;
        /* Large but fits screen */
    }

    .work-desc {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .work-image-wrapper {
        width: 100%;
        height: 40vh;
        /* Shorter image on mobile */
    }

    /* Services */
    .service-row {
        flex-direction: column;
        padding: 2rem 0;
    }

    .service-row:hover {
        padding: 2rem 0;
        /* Disable hover expansion on touch */
    }

    .service-num {
        margin-bottom: 0.5rem;
    }

    .service-name {
        width: 100%;
        font-size: 2.5rem;
        margin: 0.5rem 0 1rem;
    }

    .service-desc {
        font-size: 1rem;
    }

    /* Footer */
    .footer-cta {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-left,
    .footer-form-wrapper {
        width: 100%;
    }

    .footer-cta h2 {
        font-size: 15vw;
    }

    .email-link {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .socials {
        margin-left: 0;
    }

    .socials a {
        margin-left: 0;
        margin-right: 1.5rem;
    }

    /* Hide custom cursor on touch devices */
    .cursor-follower {
        display: none;
    }
}