:root {
    --cream: #faf8f5;
    --charcoal: #2a2a2a;
    --soft-gold: #c9a961;
    --warm-grey: #8a8a8a;
    --deep-olive: #4a5240;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Subtle grain texture overlay */
.grain {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    opacity: 0.4;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

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

/* Monogram circle */
.monogram {
    width: 140px;
    height: 140px;
    margin: 0 auto 3rem;
    border: 2px solid var(--soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--deep-olive);
    position: relative;
    animation: fadeInScale 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: scale(0.8);
}

.monogram::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--soft-gold);
    border-radius: 50%;
    opacity: 0.3;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: var(--charcoal);
    animation-delay: 0.4s;
}

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--soft-gold),
        transparent
    );
    margin: 2.5rem auto;
    animation: expandWidth 1s ease-out 0.6s forwards;
    transform-origin: center;
    transform: scaleX(0);
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

.tagline {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--warm-grey);
    margin-bottom: 3rem;
    animation-delay: 0.8s;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--soft-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.status .text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-olive);
    font-weight: 400;
}

.footer {
    font-size: 0.875rem;
    color: var(--warm-grey);
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .monogram {
        width: 110px;
        height: 110px;
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .name {
        margin-bottom: 1.5rem;
    }
    
    .divider {
        width: 60px;
        margin: 2rem auto;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .status {
        padding: 0.75rem 1.5rem;
    }
    
    .status .text {
        font-size: 0.813rem;
    }
}

@media (max-width: 480px) {
    .monogram {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.938rem;
    }
}
