/* === HS Intro Section === */
:root {
    --hs-color-point: #d32978;
}

.hs-intro {
    padding: 100px 0;
    background: #fff;
}

.hs-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image */
.hs-intro__image {
    position: relative;
}

.hs-intro__image-frame {
    position: relative;
    z-index: 1;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(211, 41, 120, 0.12);
}

.hs-intro__image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.hs-intro__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(211, 41, 120, 0.15), rgba(211, 41, 120, 0.05));
    z-index: 0;
}

/* Content */
.hs-intro__content {
    padding: 20px 0;
}

.hs-intro__label {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--hs-color-point);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}

.hs-intro__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--hs-color-point);
}

.hs-intro__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #2a2025;
    margin-bottom: 6px;
    line-height: 1.2;
}

.hs-intro__title-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.hs-intro__divider {
    width: 48px;
    height: 2px;
    background: var(--hs-color-point);
    margin: 28px 0;
    border-radius: 2px;
}

.hs-intro__greeting {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a4045;
    margin-bottom: 20px;
}

.hs-intro__greeting strong {
    color: var(--hs-color-point);
    font-weight: 600;
}

.hs-intro__desc {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    line-height: 1.8;
    color: #888;
    margin-bottom: 28px;
}

.hs-intro__credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hs-intro__credentials li {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #666;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.hs-intro__credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hs-color-point);
    opacity: 0.5;
}

/* More button */
.hs-intro__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 13px 28px;
    border: 1.5px solid var(--hs-color-point);
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--hs-color-point);
    text-decoration: none;
    transition: background 0.22s, color 0.22s, transform 0.15s;
}
.hs-intro__more svg {
    transition: transform 0.22s;
}
.hs-intro__more:hover {
    background: var(--hs-color-point);
    color: #fff;
    transform: translateY(-1px);
}
.hs-intro__more:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 900px) {
    .hs-intro__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hs-intro__image {
        max-width: 360px;
        margin: 0 auto;
    }

    .hs-intro__label {
        padding-left: 0;
    }

    .hs-intro__label::before {
        display: none;
    }

    .hs-intro__divider {
        margin: 28px auto;
    }

    .hs-intro__credentials {
        align-items: center;
    }

    .hs-intro__name {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hs-intro {
        padding: 60px 0;
    }

    .hs-intro__inner {
        padding: 0 20px;
        gap: 36px;
    }

    .hs-intro__name {
        font-size: 1.75rem;
    }

    .hs-intro__title-sub {
        font-size: 0.88rem;
    }

    .hs-intro__greeting {
        font-size: 0.95rem;
    }

    .hs-intro__desc {
        font-size: 0.88rem;
    }

    .hs-intro__credentials li {
        font-size: 0.82rem;
    }
}
