@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Courier+Prime:wght@400;700&display=swap');

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

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #e8dcc4;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 620px;
    width: 100%;
    background: #fffef7;
    border: 4px solid #2d5016;
    box-shadow: 8px 8px 0 rgba(45, 80, 22, 0.3);
    padding: 50px 45px;
    text-align: center;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #d4a574;
    pointer-events: none;
}

.logo {
    font-size: 3.5em;
    margin-bottom: 15px;
    filter: grayscale(20%);
}

h1 {
    font-size: 3em;
    color: #2d5016;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}

.tagline {
    font-size: 1.2em;
    color: #8b4513;
    margin-bottom: 35px;
    font-weight: 400;
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    border-top: 2px solid #d4a574;
    border-bottom: 2px solid #d4a574;
    padding: 12px 0;
}

.description {
    font-size: 1.05em;
    color: #3a3a3a;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: left;
    background: #f5f0e6;
    padding: 20px;
    border-left: 4px solid #d4a574;
}

.contact-container {
    margin: 20px 0;
}

.contact-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1em;
    font-weight: 700;
    color: #fffef7;
    background: #2d5016;
    border: 3px solid #2d5016;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-button:hover {
    background: #3d6020;
    border-color: #3d6020;
    box-shadow: 4px 4px 0 rgba(45, 80, 22, 0.4);
    transform: translate(-2px, -2px);
}

.contact-button:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 rgba(45, 80, 22, 0.4);
}

@media (max-width: 600px) {
    .container {
        padding: 35px 25px;
    }

    h1 {
        font-size: 2.2em;
    }

    .tagline {
        font-size: 1em;
    }

    .contact-button {
        padding: 12px 24px;
        font-size: 1em;
    }
}
