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

body {
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
}

/* Ambient gradient movement */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.06), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.03), transparent 60%);
    animation: ambientMove 20s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Moving spotlight */
body::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    animation: spotlightMove 25s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Dust canvas */
canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Content */
.container {
    max-width: 650px;
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

.logo,
h1,
.shimmer-line,
p,
footer {
    opacity: 0;
    transform: translateY(20px);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    letter-spacing: 6px;
    margin-bottom: 50px;
    color: #d4af37;
    animation: fadeUp 1.5s ease forwards;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 25px;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: .5s;
}

.shimmer-line {
    width: 140px;
    height: 2px;
    margin: 0 auto 45px auto;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #fff3c4,
        #d4af37,
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 4s infinite linear, fadeUp 1.5s ease forwards;
    animation-delay: 1s;
}

p {
    font-size: 18px;
    color: #cfcfcf;
    line-height: 1.8;
    letter-spacing: 1px;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 1.4s;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    background: rgba(255,255,255,0.08);
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    padding: 14px;
    background: #d4af37;
    color: #000;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #c9a227;
}

/* Hide honeypot */
.honeypot {
    display: none;
}

/* Success Overlay */
#successOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

#successOverlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    text-align: center;
    animation: fadeUp 1s ease forwards;
}

.success-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #d4af37;
    letter-spacing: 3px;
    margin-top: 20px;
}

.success-content p {
    color: #ccc;
    margin-top: 10px;
}

/* Gold ring animation */
.gold-ring {
    width: 80px;
    height: 80px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: ringPulse 1.8s ease forwards;
}

.gold-ring::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    animation: ringExpand 1.8s ease forwards;
}

footer {
    margin-top: 60px;
    font-size: 13px;
    color: #777;
    letter-spacing: 2px;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 1.8s;
}

@keyframes ringPulse {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes ringExpand {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes ambientMove {
    0% { transform: translate(-5%, -5%) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

@keyframes spotlightMove {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-45%, -55%) scale(1.15); }
}

@media (max-width: 480px) {
    h1 { font-size: 38px; }
    .logo { font-size: 22px; }
    p { font-size: 16px; }
}
