* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Cormorant Garamond', serif;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat fixed;
    color: #f5f0e6;
    overflow: hidden;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 20, 30, 0.82);
}
.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.signature {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 2s forwards 0.5s;
}
.tagline {
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}
.countdown {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    font-size: 1.4rem;
    opacity: 0;
    animation: fadeIn 2s forwards 1.5s;
}
.time {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}
.time span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}
.message, .sub {
    font-size: 1.5rem;
    margin: 1rem 0;
    opacity: 0;
    animation: fadeIn 2s forwards 2s;
}
.newsletter {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeIn 2s forwards 2.5s;
}
.newsletter input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    width: 300px;
    font-size: 1rem;
}
.newsletter button {
    padding: 1rem 2rem;
    border: none;
    background: #d4af37;
    color: #111;
    font-weight: bold;
    border-radius: 50px;
    margin-left: -100px;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter button:hover { background: #e6c84a; }

@keyframes fadeIn { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

@media (max-width: 768px) {
    .signature { font-size: 3.5rem; }
    .countdown { flex-wrap: wrap; gap: 1rem; }
    .newsletter input { width: 250px; }
}