/* Craft Hero Styles */
.craft-hero-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 32px;
    background: transparent;
}

.craft-hero-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
    /* ensure hero content sits above decorative backgrounds */
}

.craft-hero-topright {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.craft-down-arrow {
    width: 36px;
    height: auto;
}

.craft-scroll-text {
    color: var(--Black, #181818);
    font-family: "General Sans Variable", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* D-General Sans Variable - H4 */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

.craft-icon-wrap {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    padding-top: 140px;
    /* position: relative; */
}

.craft-icon {
    width: 100%;
    max-width: 750px;
    height: auto;
}

.craft-hero-copy {
    max-width: 900px;
    margin: 24px auto 0;
    background: transparent;
}

.craft-hero-leading {
    color: #181818;
    text-align: center;
    font-family: Costaline, serif;
    font-size: 40px;
    font-weight: 100;
    max-width: 750px;
    line-height: 170%;
    margin: 0 auto 12px;
    background: transparent;
}

.craft-hero-highlight {
    color: #833C1E;
    font-family: "Alamendro", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 110%;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .craft-hero-section {
        padding: 40px 0;
    }

    .craft-hero-topright {
        top: -18px;
        right: 40%;
        transform: translateX(50%);
        justify-content: center;
        gap: 6px;
    }

    .craft-hero-leading {
        font-size: 28px;
    }

    .craft-hero-highlight {
        font-size: 28px;
    }

    .craft-icon {
        max-width: 600px;
    }

    /* Mobile: center arrow above craft icon and adjust text */
    .craft-hero-leading {
        font-family: Costaline, serif;
        font-size: 16px;
        font-weight: 100;
        line-height: 1.7;
        /* 27.2px */
        width: 100%;
        box-sizing: border-box;
        padding: 0 12px;
    }

    .craft-hero-topright .craft-down-arrow {
        width: 28px;
    }

    .craft-scroll-text {
        /* Mobile override: use Costaline for visual harmony on small screens */
        /* color: #181818;
        font-family: Costaline, serif;
        font-weight: 100;
        line-height: 1.7;
        text-align: center; */
        font-size: 16px;
    }
}