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

html {
    font-size: 18px;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5em;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    background-color: #fafafa;
}

/* Header */
.header {
    padding: 2vw 4vw;
    background-color: transparent;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.site-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.05em;
    color: #1a1a1a;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.hero-section {
    padding: 4vw 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* Image Container */
.image-container {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Text Container */
.text-container {
    padding: 0;
}

.text-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 3.1rem;
    line-height: 1.2em;
    letter-spacing: -0.05em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.text-container p {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5em;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

/* Footer */
.footer {
    padding: 4vw;
    background-color: #fafafa;
    margin-top: 4vw;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-email {
    order: 2;
}

.footer-email a {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
}

.footer-email a:hover {
    opacity: 0.7;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 1.2em;
    letter-spacing: -0.05em;
    color: #1a1a1a;
    text-align: center;
    order: 1;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .header {
        padding: 2vw 4vw;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .content-wrapper {
        grid-template-columns: 37.5% 1fr;
        gap: 6%;
        align-items: center;
    }

    .text-container h2 {
        font-size: 3.1rem;
        margin-bottom: 1.5rem;
    }

    .text-container p {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-email {
        order: 1;
        text-align: right;
        margin-left: auto;
    }

    .footer-title {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer {
        position: relative;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .main-content,
    .header-inner,
    .footer-content {
        max-width: 1400px;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    body {
        font-size: 1.2rem;
    }

    .header {
        padding: 6vw;
    }

    .site-title {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 0 6vw;
    }

    .hero-section {
        padding: 6vw 0;
    }

    .text-container h2 {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }

    .text-container p {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .footer {
        padding: 6vw;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-email a {
        font-size: 1.1rem;
    }
}