* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f3efe8;
    font-family: "Inter", sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.panel {
    width: min(950px, 100%);
    background: #87957f;
    padding: 70px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 500;
    line-height: .95;
    margin-bottom: 18px;
}

.title {
    letter-spacing: .28em;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.skills {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    letter-spacing: .08em;
    margin-bottom: 60px;
    font-weight: 300;
}

.divider {
    width: 240px;
    height: 2px;
    background: #b89b72;
    margin-bottom: 40px;
}

.intro {
    max-width: 560px;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 55px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .22em;
    opacity: .85;
    margin-bottom: 8px;
}

a {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 1.1rem;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #d8c3a0;
    transition: width .25s ease;
}

a:hover::after {
    width: 100%;
}

@media (max-width: 700px) {
    body {
        padding: 22px;
    }

    .panel {
        padding: 42px 32px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .title {
        letter-spacing: .2em;
    }

    .skills {
        line-height: 1.7;
    }

    .intro {
        font-size: 1.05rem;
    }
}