/* ===== Design System ===== */
:root {
    /* Colors - Refined, understated palette */
    --bg-primary: #0c0c0c;
    --bg-overlay: rgba(12, 12, 12, 0.95);

    --text-primary: #f5f3f0;
    --text-secondary: rgba(245, 243, 240, 0.6);
    --text-tertiary: rgba(245, 243, 240, 0.35);

    --accent-gold: #c9a962;
    --accent-gold-light: #d4ba7a;
    --accent-gold-glow: rgba(201, 169, 98, 0.15);

    --border-subtle: rgba(245, 243, 240, 0.08);
    --border-accent: rgba(201, 169, 98, 0.3);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    /* Animation */
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== Background Effects ===== */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 120%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== Main Container ===== */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ===== Logo ===== */
.logo {
    margin-bottom: 40px;
    animation: fadeIn 1.2s var(--ease-elegant);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    letter-spacing: -0.02em;
    transition: all 0.6s var(--ease-elegant);
}

.logo-mark:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 60px var(--accent-gold-glow);
}

/* ===== Brand Name ===== */
.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    margin-bottom: 12px;
    animation: fadeIn 1.2s var(--ease-elegant) 0.2s both;
}

.brand-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    animation: fadeIn 1.2s var(--ease-elegant) 0.4s both;
}

/* ===== Divider ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0;
    width: 100%;
    max-width: 200px;
    animation: fadeIn 1.2s var(--ease-elegant) 0.6s both;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.divider-diamond {
    margin: 0 20px;
    color: var(--accent-gold);
    font-size: 0.5rem;
    opacity: 0.7;
}

/* ===== Mission Statement ===== */
.mission {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 48px;
    animation: fadeIn 1.2s var(--ease-elegant) 0.8s both;
}

.mission em {
    font-style: italic;
    color: var(--accent-gold-light);
}

/* ===== Coming Soon ===== */
.coming-soon {
    margin-bottom: 60px;
    animation: fadeIn 1.2s var(--ease-elegant) 1s both;
}

.coming-soon-text {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--border-accent);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    transition: all 0.4s var(--ease-elegant);
}

.coming-soon-text:hover {
    background: var(--accent-gold-glow);
    border-color: var(--accent-gold);
}

/* ===== Contact ===== */
.contact {
    animation: fadeIn 1.2s var(--ease-elegant) 1.2s both;
}

.contact-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* ===== Footer ===== */
.footer {
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .logo-mark {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .brand-name {
        letter-spacing: 0.25em;
    }

    .divider {
        margin: 36px 0;
    }

    .mission {
        margin-bottom: 36px;
    }

    .coming-soon {
        margin-bottom: 48px;
    }
}