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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #b0ded7;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 480px) {
    body {
        padding: 16px;
    }
}

.card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: clamp(1.25rem, 4.5vw, 1.6rem);
    line-height: 1.15;
    white-space: nowrap;
}

.subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    color: #555;
    margin-bottom: 28px;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 16px;
    background: #b0ded7;
    border-radius: 14px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contacts a:hover {
    background: #9fd0c8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.contacts svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
