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

:root {
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --gray-dark: #333333;
    --accent: #0046FF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #faf9f6;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0 2.5% 2.5% 2.5%;
    margin: 10px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1602087564121-ecda2f6c7ee9?q=80&w=2067&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    filter: blur(0px) brightness(0.80);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 5% 5%;
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

/* Hero Navigation */
.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 100px; */
    margin-top: -30px;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.hero-nav-link:hover {
    opacity: 0.7;
}



.hero-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--white);
    margin: 0;
    max-width: 800px;
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 80px;
}

.hero-nav {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.1s forwards;
}

.hero-visual {
    display: none;
}




/* Legacy nav styles - keeping for compatibility but not used */
.nav {
    display: none;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 120px 40px;
    display: flex;
    align-items: center;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-number {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
}

.section-title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* About Section */
.about {
    background-color: #faf9f6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    padding: 0 15%;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-paragraph {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-dark);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.stat-item {
    border-left: 1px solid var(--black);
    padding-left: 30px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* Work Section */
.work {
    background-color: #faf9f6;
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    padding: 0 15%;
}

.work-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    padding: 10px 0;
}

.work-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--gray-light);
}

.work-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 50%, #fce7f3 100%);
}

.work-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-title {
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
    line-height: 1.4;
    color: var(--black);
}

.work-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0 0 12px 0;
}

.work-meta {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Footer */
.footer {
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollLine {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        margin: 20px;
        padding: 20px;
        min-height: 70vh;
    }

    .hero-container {
        padding: 35px 40px 40px 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-nav {
        margin-bottom: 60px;
        margin-top: 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-nav-links {
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .work-item {
        flex-direction: column;
        gap: 20px;
    }

    .work-image {
        width: 100%;
        max-width: 300px;
        height: 300px;
        border-radius: 12px;
    }

    .section {
        padding: 100px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        margin: 15px;
        padding: 15px;
        min-height: 60vh;
    }

    .hero-container {
        padding: 40px 20px 30px 20px;
    }

    .hero-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        margin-top: 0;
    }

    .hero-nav-links {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-nav-link {
        font-size: 12px;
    }

    .logo-img {
        height: 32px;
    }

    .hero-cta-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }
}