:root {
    --page-bg: #f8f7fb;
    --text-color: #111827;
    --muted-color: #6b7280;
    --brand: #6d28d9;
    --card-radius: 20px;

    --bg: #f4f2ff;
    --panel: #ffffff;
    --text: #1d1740;
    --muted: #6c6992;
    --accent: #6f30d6;
    --accent-2: #8f57ee;
    --separator: rgba(136, 120, 196, 0.22);
}

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

body.portfolio-page {
    margin: 0;
    color: var(--text-color);
    background: radial-gradient(circle at 5% 10%, rgba(173, 132, 255, 0.2), transparent 30%),
        radial-gradient(circle at 95% 80%, rgba(255, 173, 237, 0.24), transparent 32%),
        var(--page-bg);
    font-family: "Poppins", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

.glass {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    color: #0f172a;
}

.home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 2.5rem;
    background-image: url("../img/header.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .7);
    pointer-events: none;
}

.hero-intro {
    text-align: center;
    padding: 1.25rem 1.5rem;
    max-width: 38rem;
    margin: 20vh auto;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.hero-intro h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-intro .eyebrow {
    margin: 0.55rem 0 0;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #334155;
}

.page-content {
    padding-bottom: 2rem;
}

.work-section {
    margin-bottom: 4rem;
}

.section-head {
    margin-bottom: 1.5rem;
}

.contact-cta {
    margin-top: 6rem;
    margin-bottom: 13.5rem;
    padding: 6rem;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-cta h2 {
    margin-bottom: 0;
    font-size: clamp(1.4rem, 2.3vw, 2rem);
}

footer {
    color: var(--muted-color);
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 2rem;
}

@media (max-width: 991.98px) {
    .home {
        padding: 1.6rem;
        min-height: 90vh;
    }

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

    .hero-intro {
        padding: 1rem 1.1rem;
    }

    .contact-cta {
        margin-top: 3rem;
        padding: 2rem 1.25rem;
    }
}
