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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f8f8;
    color: #1a1a1a;
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-center {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-center a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-center a:hover {
    opacity: 0.5;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}


.hero-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-top: 40px;
}



@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circular-text svg {
    width: 100%;
    height: 100%;
}

.circular-text text {
    fill: #1a1a1a;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Featured Work Section */
.featured {
    padding: 180px 60px 120px;
    background: #f8f8f8;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-overline {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-grid a {
    text-decoration: none;
    display: block;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.featured-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-caption {
    padding: 30px;
    text-align: center;
}

.featured-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.featured-caption p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    min-height: 100vh;
    padding-top: 100px;
}

.about-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-overline {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.about-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    font-weight: 300;
}

.about-image {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    padding: 80px 60px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-contact {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-address {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 50px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 40px;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.footer-credits {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.footer-credits a {
    color: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.footer-credits a:hover {
    box-shadow: 0 1px 0 #fff;
}

.developer-social {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.developer-social a {
    font-size: 15px;
}

.developer-social a:hover {
    box-shadow: none;
    transform: scale(1.1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-center.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .nav-center li {
        margin: 15px 0;
    }

    .hero {
        padding: 120px 30px 60px;
    }

    .circular-text {
        display: none;
    }

    .featured {
        padding: 80px 30px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 60px 30px;
    }

    .about-image {
        min-height: 400px;
    }

    footer {
        padding: 60px 30px;
    }
}