@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500&family=Josefin+Sans:wght@300;400;600&display=swap');

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

body {
    background: #fff;
    color: #000;
    min-height: 60vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

body, .content p {
    font-family: 'Work Sans', sans-serif;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 80%;
}

.content h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 850px) {
    .content h1 {
        white-space: normal;
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }
}

.content h1 .lighter {
    color: rgba(0, 0, 0, 0.8);
}

.content h1 .last {
    color: #000;
    text-decoration: underline;
    text-decoration-color: rgb(255, 221, 0);
    text-decoration-thickness: 0.18em;
    text-underline-offset: -0.04em;
    text-decoration-skip-ink: none;
}

.content p {
    font-size: clamp(1rem, 2vw, 1.25rem); /* scales between 16px and 20px */
    line-height: 1.6;
    width: 70%;
    color: #504e4d;
    text-align: left;
    word-break: keep-all;
}

@media (max-width: 600px) {
    .content p {
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 1.2rem;
    }
}

.contact-line a {
    color: #2c2b2a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    transition: color 0.25s ease;
}

.contact-line a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: rgb(255, 221, 0);
    transition: width 0.3s ease;
}

.contact-line a:hover {
    color: rgb(2, 130, 255);
}

.contact-line a:hover::after {
    width: 100%;
    height: 4px;
}

