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

/* Root Variables */
:root {
    --dusty-rose: #E29587;
    --muted-periwinkle: #97A7ED;
    --soft-sage: #B8C6AF;
}

/* Body & Background */
body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dusty-rose), var(--muted-periwinkle), var(--soft-sage));
    background-size: 400% 400%;
    animation: gradientShift 90s ease infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Main Content */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 80px; /* Space for footer */
}

/* Brand Typography */
.brand {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: lowercase;
    animation: pulse 4s ease-in-out infinite;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    font-weight: 300;
}

.inquiries {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.inquiries:hover {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .brand {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: 0.3em;
    }

    footer {
        padding: 1.5rem 2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}
