:root {
    --bg-graphite: #1a1a1b;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #00d4ff;
    --footer-text: #666666;
}

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-graphite);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 3rem;
    display: block;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

.visually-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.statement {
    margin-bottom: 3rem;
}

.line-one {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.line-two {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 8vw, 4rem);
    flex-wrap: wrap;
}

.contact-item {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
}

.contact-item:hover {
    color: var(--accent-blue);
}

.contact-item:focus {
    outline: none;
}

.contact-item:focus-visible {
    color: var(--accent-blue);
    outline: 2px solid var(--accent-blue);
    outline-offset: 4px;
}

.contact-item i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.contact-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.6rem;
    color: var(--footer-text);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .statement {
        margin-bottom: 2rem;
    }

    footer {
        font-size: 0.5rem;
        padding: 0 1rem;
        bottom: 15px;
    }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .contact-item {
        transition: none;
    }
    
    .contact-item:hover {
        transform: none;
    }
}