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

html {
    /* dimmed warm paper: soft in daylight, not glaring at night */
    background-color: #e6e3db;
    background-image: radial-gradient(ellipse at 50% 30%, #ebe8e1 0%, #dedad1 100%);
    min-height: 100%;
}

body {
    width: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: "EB Garamond", Georgia, "Times New Roman", serif;
    color: #2e2c27;
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    display: grid;
    justify-items: center;
    align-content: center;

    padding: 2rem;
    padding-bottom: 10rem;
}

.name {
    font-weight: 500;
    color: #2e2c27;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-align: center;
}

.name::after {
    content: "";
    display: block;
    width: min(16rem, 55vw);
    height: 1px;
    margin: 1.1rem auto 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(120, 105, 70, 0.45),
        transparent
    );
}

.bio {
    margin-top: 1rem;
    max-width: 60ch;
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: rgba(46, 44, 39, 0.75);
    line-height: 1.6;
    text-align: center;
}

.links {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);

    display: flex;
    gap: 1.4rem;
    justify-content: center;
    align-items: center;

    z-index: 2;
}

.link img {
    width: 2rem;
    height: auto;
    /* icons render as dark ink regardless of their source color */
    filter: brightness(0) invert(0.18);
    opacity: 0.55;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.link:hover img {
    opacity: 0.9;
    transform: translateY(-2px);
}

.content {
    max-width: 60ch;
    margin: 2.5rem auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.content p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(46, 44, 39, 0.8);
}
