:root {
    --bg-light: #f6f1e9;
    --bg-deep: #dde9e2;
    --text: #1f1c18;
    --ring: rgba(196, 107, 59, 0.4);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(1200px 600px at 20% 10%, rgba(196, 107, 59, 0.15), transparent 55%),
        radial-gradient(900px 500px at 85% 90%, rgba(38, 99, 85, 0.18), transparent 55%),
        linear-gradient(135deg, var(--bg-light), var(--bg-deep));
    color: var(--text);
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.portrait {
    width: clamp(180px, 32vw, 360px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 20px 40px rgba(31, 28, 24, 0.25),
        0 0 0 10px var(--ring);
}

.name {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.tagline {
    max-width: 520px;
    color: rgba(31, 28, 24, 0.7);
    line-height: 1.6;
    margin: 0;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: rgba(38, 99, 85, 0.9);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(31, 28, 24, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 32px rgba(31, 28, 24, 0.25);
}
