:root {
    --color-gold: #AA8500;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
}

.main-text {
    font-size: clamp(3rem, 15vw, 12rem);
    /* Responsive typography */
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.text-black {
    color: #000000;
    display: block;
}

.text-gold {
    color: var(--color-gold);
    display: block;
}

/* Subtle Animation */
.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.aboreto-regular {
    font-family: "Aboreto", system-ui;
    font-weight: 400;
    font-style: normal;
}

.brand-logo {
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}