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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #2C2B28;
    background-color: #EAE7DD;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 700px;
}

.page-wrapper {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 90px;
}

.monogram {
    position: absolute;
    top: 90px;
    right: 90px;
    width: 110px;
    height: auto;
    display: block;
}

.content-block {
    max-width: 700px;
    text-align: left;
}

.name {
    font-size: 18px;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-transform: uppercase;
    color: #2C2B28;
    margin-bottom: 6px;
    line-height: 1.4;
}

.subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6A6862;
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 1.4;
}

.lead-statement {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 32px;
    color: #2C2B28;
}

.body-text {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 28px;
    color: #2C2B28;
    font-weight: 400;
}

.contact {
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    color: #2C2B28;
    line-height: 1.5;
}

a {
    color: #2C2B28;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .page-wrapper {
        display: block;
        padding: 40px;
        padding-top: 40px;
    }

    .monogram {
        position: relative;
        top: auto;
        right: auto;
        width: 80px;
        margin-bottom: 48px;
    }

    .content-block {
        max-width: 100%;
    }

    .name {
        font-size: 16px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .lead-statement {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .body-text {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .contact {
        font-size: 13px;
    }
}
