:root {
    --color-bg: #0A0A0A;
    --color-surface: #121212;
    --color-accent: #4B5563;
    --color-text: #FFFFFF;
    --color-muted: #8C7E7A;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: var(--color-accent);
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 20px;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 800;
}

h1 em {
    color: var(--color-accent);
    font-style: italic;
}

.rotating-seal {
    animation: rotateRing 45s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.boutique-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 30px;
    width: 250px;
    overflow: hidden;
}

.boutique-card::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        var(--color-accent),
        transparent 50%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.boutique-card:hover::before {
    opacity: 1;
}

.reveal, .reveal-up {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal { transform: scale(0.96); }
.reveal-up { transform: translateY(40px); }
.reveal.is-visible, .reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.btn-submit {
    background-color: var(--color-accent);
    color: var(--color-text);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}
