/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Archivo+Black&display=swap');

/* CSS Variables */
:root {
    --white: #ffffff;
    --black: #000000;
    --site-max-width: 2606px;
    --site-gutter: 4vw;
    --mobile-gutter: 6vw;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

/* Header */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    padding: 2.9vw var(--site-gutter);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.header-inner {
    max-width: var(--site-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-title {
    text-align: center;
}

#site-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    #header {
        padding: 6vw var(--mobile-gutter);
    }
}

/* Main Content */
main {
    min-height: 80vh;
}

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10vmax 0;
    background-color: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--site-gutter);
    width: 100%;
}

.content {
    text-align: center;
}

.content h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.content p a {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .content-wrapper {
        padding: 0 var(--mobile-gutter);
    }

    .hero-section {
        min-height: 60vh;
        padding: 5vmax 0;
    }
}

/* Footer */
#footer {
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
}

.footer-spacer {
    min-height: 20vh;
}

.footer-content {
    min-height: 30vh;
    padding: 5vmax 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-content h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    text-transform: lowercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-content p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-year {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .content h1,
    .content p {
        opacity: 0;
        animation: fadeIn 0.8s ease forwards;
    }

    .content h1 {
        animation-delay: 0.1s;
    }

    .content p:nth-of-type(1) {
        animation-delay: 0.2s;
    }

    .content p:nth-of-type(2) {
        animation-delay: 0.3s;
    }

    .content p:nth-of-type(3) {
        animation-delay: 0.4s;
    }

    .content p:nth-of-type(4) {
        animation-delay: 0.5s;
    }

    .content p:nth-of-type(5) {
        animation-delay: 0.6s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Print Styles */
@media print {
    #header {
        position: static;
    }

    .footer-spacer {
        display: none;
    }
}
