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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #f2f2ef;
    /* Soft off-white/beige from reference vibes */
    color: #1a1a1a;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
    overflow: hidden;
    /* Minimalist feel often avoids scroll if content fits */
}

header {
    width: 100%;
    margin-bottom: auto;
}

.logo {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 80vw;
}

.mission-statement {
    font-size: clamp(3rem, 6vw, 8rem);
    /* Large, responsive typography */
    font-weight: 300;
    line-height: 1;
    /* Tight line height for impact */
    letter-spacing: -0.03em;
}

footer {
    width: 100%;
    margin-top: auto;
    padding-top: 2rem;
}

.email {
    font-size: 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    font-weight: 400;
}

.email::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.email:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .mission-statement {
        font-size: 3.5rem;
    }
}