/* CSS Variables */
:root {
    --color-bg: #ffffff;
    --color-header: #1a1a1a;
    --color-text: #2d2d2d;
    --color-text-muted: #6b6b6b;
    --color-accent: #8b7355;
    --color-line: #d4d4d4;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Bar */
.header-bar {
    width: 100%;
    height: 8px;
    background-color: var(--color-header);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

/* Logo/Title */
.logo {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.logo .vip {
    color: var(--color-accent);
    margin-left: 0.1em;
}

/* Description */
.description {
    margin-bottom: 2.5rem;
}

.description p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.description p:last-child {
    margin-bottom: 0;
}

/* Contact Link */
.contact-link {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

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

/* Footer */
footer {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-line);
    margin-bottom: 1.5rem;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    main {
        padding: 3rem 1.5rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }

    .description p {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    footer {
        padding: 1.5rem;
    }
}
