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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F5F1E8;
    color: #3A3428;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.content {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    width: 220px;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.03));
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 1;
}

.description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #4A4235;
    margin-bottom: 60px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.3px;
    /* font-style: italic; */
}

.contact-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.contact-links::before,
.contact-links::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139, 115, 85, 0.2), transparent);
    max-width: 60px;
}

.link {
    color: #7A6B5A;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    padding-bottom: 6px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #8B7355;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link:hover {
    color: #5A4D3F;
    letter-spacing: 2.5px;
}

.link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo {
        margin-bottom: 35px;
    }
    
    .logo img {
        width: 180px;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-links::before,
    .contact-links::after {
        display: none;
    }
}

