:root {
    --ink: #152033;
    --muted: #637083;
    --line: #d9e1ec;
    --surface: #ffffff;
    --soft: #f5f8fc;
    --accent: #0f766e;
    --accent-dark: #134e4a;
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    background: var(--soft);
    color: var(--ink);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.page-content {
    flex: 1;
    width: 100%;
}

.site-nav {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.hero {
    padding: 7rem 0 3rem;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero-copy {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 690px;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 800;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.profile-photo {
    align-items: center;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 28% 20%,
            rgba(255, 210, 120, .22),
            transparent 35%),
        linear-gradient(145deg,
            #b77a2b 0%,
            #6d5c47 35%,
            #27486b 70%,
            #152033 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(21, 32, 51, 0.16);
    color: #fff;
    display: flex;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.04em;
    min-height: 280px;
    overflow: hidden;
}

.profile-photo::before {
    content: "";
    position: absolute;
    inset: 15%;
    background: radial-gradient(circle,
            rgba(255, 190, 90, .18),
            transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.profile-photo img {
    height: 90%;
    object-fit: cover;
    width: 90%;
    border-radius: 10px;



}

.footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

a {
    color: var(--muted);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .hero {
        padding: 5.5rem 0 2rem;
        text-align: center;
    }

    .hero-copy {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .hero .btn {
        width: 100%;
        max-width: 260px;
    }

    .profile-photo {
        max-width: 260px;
        min-height: 260px;
        margin: 0 auto;
    }

    .navbar-nav {
        padding-top: 0.75rem;
        text-align: center;
    }

    .nav-link {
        padding: 0.75rem 0;
        font-weight: 700;
    }

    .footer .container {
        text-align: center;
        align-items: center;
    }

    .footer nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}