html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Futura PT", Futura, Arial, sans-serif;
}

.homepage {
    min-height: 100vh;
    background-image: url("assets/images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.shade {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.intro {
    color: white;
    padding: 90px 64px 64px 72px;
    max-width: 700px;
}

.logo {
    width: min(520px, 85vw);
    height: auto;
    display: block;
    margin-bottom: 34px;
}

.services p {
    margin: 10px 0;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.location {
    margin-top: 38px;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact {
    margin-top: 42px;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

a {
    color: white;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #66B6E8;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .shade {
        align-items: flex-end;
    }

    .intro {
        padding: 32px;
    }

    .logo {
        width: min(340px, 85vw);
        margin-bottom: 32px;
    }
}