/*
    Sable Moor brand palette
    Warm cream: #F7F3EA
    Charcoal:   #242321
    Taupe:      #968C82
*/

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    background: #F7F3EA;
    color: #242321;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.content {
    width: 100%;
    max-width: 900px;
}

.logo {
    display: block;
    width: min(470px, 78vw);
    height: auto;
    margin: 0 auto 2.5rem;
}

.wordmark {
    margin: 0 auto 3.75rem;
    color: #242321;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7.2vw, 5.2rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.09em;
    white-space: nowrap;
}

.wordmark-sable {
    color: #242321;
}

.wordmark-moor {
    color: #968C82;
}

.tagline {
    margin: 0 0 1.25rem;
    color: #968C82;
    font-size: clamp(0.75rem, 1.3vw, 0.98rem);
    font-weight: 400;
    letter-spacing: 0.34em;
    line-height: 1.6;
}

.contact-link {
    color: #242321;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
    color: #968C82;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.description {
    margin: 0 auto;
    max-width: 680px;
    color: #242321;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    font-weight: 400;
    line-height: 1.8;
}

.scroll-indicator {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #968C82;
}

.chevron {
    width: 17px;
    height: 17px;
    border-right: 1.5px solid #968C82;
    border-bottom: 1.5px solid #968C82;
    transform: rotate(45deg);
}

.scroll-text {
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.3em;
}

@media (max-width: 600px) {
    .hero {
        padding: 2rem 1.25rem;
    }

    .logo {
        width: min(390px, 84vw);
        margin-bottom: 2rem;
    }

    .wordmark {
        margin-bottom: 3rem;
        font-size: clamp(2.4rem, 12vw, 4rem);
        letter-spacing: 0.06em;
    }

    .tagline {
        letter-spacing: 0.22em;
        margin-bottom: 1rem;
    }

    .description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .description br {
        display: none;
    }

    .scroll-indicator {
        margin-top: 6rem;
    }
}
