/* =========================================================
   HAHU SKILL
   PARENT WEBSITE
   hahuskill.com
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {

    --navy: #173d62;
    --navy-dark: #102f4d;

    --blue: #2f80d1;
    --purple: #7354c7;
    --green: #2c9b62;

    --gold: #e6a51d;
    --orange: #ee7b2d;
    --pink: #e85aa6;

    --text: #344955;
    --muted: #6d7d89;

    --page: #f8fafb;
    --border: #dce4e9;

    --white: #ffffff;

    --radius: 18px;

    --shadow:
        0 12px 30px
        rgba(35, 61, 78, .09);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    background:
        linear-gradient(
            180deg,
            #fbfcfd 0%,
            #f6f8fa 100%
        );

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing:
        antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 100;

    background:
        rgba(255, 255, 255, .96);

    border-bottom:
        1px solid
        rgba(32, 74, 105, .10);

    backdrop-filter:
        blur(12px);
}

.site-header-inner {

    width:
        min(
            1180px,
            calc(100% - 36px)
        );

    min-height: 72px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* =========================================================
   BRAND
   ========================================================= */

.site-brand {

    display: flex;

    align-items: center;

    gap: 10px;
}

.site-logo {

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    object-fit: contain;
}

.site-brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;
}

.site-brand-text strong {

    color: var(--navy);

    font-size: 1.06rem;

    font-weight: 900;
}

.site-brand-text small {

    margin-top: 3px;

    color: var(--muted);

    font-size: .68rem;

    font-weight: 700;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav {

    display: flex;

    align-items: center;

    gap: 24px;
}

.site-nav a {

    color: #486172;

    font-size: .88rem;

    font-weight: 800;
}

.site-nav a:hover {
    color: var(--blue);
}


/* =========================================================
   HERO
   ========================================================= */

.parent-hero {

    padding:
        66px 18px 58px;

    background:

        radial-gradient(
            circle at 82% 18%,
            rgba(115, 84, 199, .11),
            transparent 30%
        ),

        radial-gradient(
            circle at 14% 4%,
            rgba(230, 165, 29, .14),
            transparent 28%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbfd 100%
        );
}

.parent-hero-inner {

    width:
        min(
            1180px,
            100%
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    align-items: center;

    gap: 52px;
}

.hero-eyebrow,
.section-eyebrow {

    display: inline-block;

    margin-bottom: 7px;

    color: var(--blue);

    font-size: .67rem;

    font-weight: 900;

    letter-spacing: .10em;

    text-transform: uppercase;
}

/* Main hero title */

.parent-hero h1 {
    max-width: 720px;

    margin-bottom: 12px;

    color: var(--navy);

    font-size:
        clamp(
            2rem,
            3.6vw,
            3.35rem
        );

    font-weight: 900;

    line-height: 1.01;

    letter-spacing: -.035em;
}


/* Keep intentional line breaks */

.parent-hero h1 span {
    display: block;

    color: var(--purple);
}

/* Shorter description */

.hero-lead {
    max-width: 650px;

    margin-bottom: 15px;

    color: #536b7a;

    font-size: .93rem;

    line-height: 1.55;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

/* Smaller buttons */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.hero-button {
    min-height: 40px;

    padding: 8px 14px;

    border-radius: 10px;

    font-size: .78rem;
}

.hero-button-primary {

    background: var(--blue);

    color: #ffffff;
}

.hero-button-secondary {

    border:
        1px solid
        #bfd1df;

    background:
        #ffffff;

    color:
        var(--navy);
}


/* =========================================================
   HERO VALUES
   ========================================================= */
/* Compact values row */

.hero-values {
    display: flex;

    flex-wrap: wrap;

    gap: 5px 13px;

    margin-top: 12px;
}

.hero-values span {
    color: #547063;
    font-size: .76rem;
    font-weight: 750;
}

/* =========================================================
   HERO BRAND CARD
   ========================================================= */


/* =========================================================
   COMPACT RIGHT BRAND CARD
   ========================================================= */
.hero-brand-card {
    min-height: 185px;
    padding: 15px 18px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid #dce5ea;
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f7fa
        );

    box-shadow: var(--shadow);
}


.hero-brand-logo {
    width: 76px;
    height: 76px;

    margin-bottom: 4px;
}

.hero-brand-small {
    display: block;
    width: 100%;

    margin-bottom: 4px;

    color: var(--blue);

    font-size: .60rem;
    font-weight: 900;

    letter-spacing: .12em;

    text-align: center;
}



.hero-brand-card strong {
    display: block;
    width: 100%;

    color: var(--navy);

    font-size: 1.05rem;
    font-weight: 900;

    text-align: center;
}

.hero-brand-card p {
    margin: 3px 0 12px;

    font-size: .75rem;
}
.hero-pathway-preview {
    gap: 7px;
}


.hero-pathway-preview span {
    width: 39px;
    height: 39px;

    border-radius: 11px;

    font-size: .95rem;
}

.preview-heritage {
    color: #ad7607;
}

.preview-youth {
    color: var(--purple);
}

.preview-adult {
    color: var(--green);
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.programs-section,
.why-section,
.how-section,
.community-section,
.final-cta {

    width:
        min(
            1180px,
            calc(100% - 36px)
        );

    margin:
        0 auto;
}

.programs-section,
.why-section,
.how-section {

    padding:
        64px 0;
}


/* =========================================================
   MOVE PROGRAM CARDS UP
   ========================================================= */

.programs-section {
    padding:
        28px 0 54px;
}

.programs-section .section-heading {
    margin-bottom: 16px;
}

.programs-section .section-heading h2 {
    margin-bottom: 5px;
}

.programs-section .section-heading p {
    margin-bottom: 0;
}


.section-heading {

    max-width: 760px;

    margin:
        0 auto 28px;

    text-align: center;
}

.section-heading h2,
.why-content h2,
.community-section h2,
.final-cta h2 {

    margin-bottom: 10px;

    color: var(--navy);

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.55rem
        );

    line-height: 1.15;
}

.section-heading p,
.why-content p,
.community-section p,
.final-cta p {

    color: #637684;
}


/* =========================================================
   PROGRAM GRID
   ========================================================= */

.program-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 20px;
}


/* =========================================================
   PROGRAM CARD
   ========================================================= */

.program-card {

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    background:
        #ffffff;

    box-shadow:
        0 8px 20px
        rgba(46, 66, 78, .07);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.program-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 14px 28px
        rgba(46, 66, 78, .11);
}

.program-heritage {

    border-bottom:
        4px solid
        var(--gold);
}

.program-youth {

    border-bottom:
        4px solid
        var(--purple);
}

.program-adult {

    border-bottom:
        4px solid
        var(--green);
}


/* =========================================================
   PROGRAM IMAGE
   ========================================================= */

.program-image {

    width: 100%;

    aspect-ratio:
        16 / 9;

    overflow: hidden;

    background:
        #f3f6f8;
}

.program-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .35s ease;
}

.program-card:hover
.program-image img {

    transform:
        scale(1.025);
}


/* Slight custom image positions */

.program-heritage
.program-image img {

    object-position:
        center 35%;
}

.program-youth
.program-image img {

    object-position:
        center 42%;
}

.program-adult
.program-image img {

    object-position:
        center 40%;
}


/* =========================================================
   PROGRAM CONTENT
   ========================================================= */

.program-card-content {

    padding:
        19px 20px 20px;
}

.program-audience {

    display: block;

    margin-bottom: 8px;

    color: #758795;

    font-size: .65rem;

    font-weight: 850;

    letter-spacing: .02em;
}

.program-card h3 {

    margin-bottom: 2px;

    color: var(--navy);

    font-size: 1.38rem;
}

.program-subtitle {

    margin-bottom: 10px;

    color: var(--purple);

    font-size: .82rem;

    font-weight: 850;
}

.program-description {

    min-height: 68px;

    margin-bottom: 13px;

    color: #657784;

    font-size: .86rem;

    line-height: 1.55;
}

.program-features {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 17px;
}

.program-features span {

    padding:
        5px 8px;

    border-radius:
        999px;

    background:
        #f3f7fa;

    color:
        #60717e;

    font-size:
        .65rem;

    font-weight:
        800;
}


/* =========================================================
   PROGRAM BUTTON
   ========================================================= */

.program-button {

    min-height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        9px 12px;

    border-radius: 11px;

    color: #ffffff;

    font-size: .80rem;

    font-weight: 850;
}

.program-heritage
.program-button {

    background:
        #FF1D8D;
}

.program-youth
.program-button {

    background:
        var(--purple);
}

.program-adult
.program-button {

    background:
        var(--green);
}


/* =========================================================
   WHY HAHU
   ========================================================= */

.why-section {

    display: grid;

    grid-template-columns:
        minmax(0, .78fr)
        minmax(0, 1.22fr);

    align-items: center;

    gap: 42px;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.why-card {

    padding: 18px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        #ffffff;
}

.why-icon {

    margin-bottom: 8px;

    font-size: 1.4rem;
}

.why-card h3 {

    margin-bottom: 5px;

    color: var(--navy);

    font-size: 1rem;
}

.why-card p {

    margin: 0;

    color: #687a87;

    font-size: .80rem;
}

.why-card-wide {

    grid-column:
        1 / -1;

    display: flex;

    align-items: center;

    gap: 13px;

    background:
        linear-gradient(
            135deg,
            #f8fbfd,
            #f2faf5
        );
}

.why-card-wide
.why-icon {

    margin: 0;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {

    border-top:
        1px solid
        #e5ebef;

    border-bottom:
        1px solid
        #e5ebef;
}

.how-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.how-step {

    padding: 18px;

    border-radius: 16px;

    background: #ffffff;

    border:
        1px solid
        var(--border);
}

.how-step > span {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    margin-bottom: 10px;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    font-size: .76rem;

    font-weight: 900;
}

.how-step h3 {

    margin-bottom: 5px;

    color: var(--navy);

    font-size: 1rem;
}

.how-step p {

    margin: 0;

    color: #6b7d89;

    font-size: .79rem;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.community-section {

    margin-top: 58px;
    margin-bottom: 58px;

    padding: 32px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, .65fr);

    gap: 28px;

    align-items: center;

    border:
        1px solid
        #d9e3e9;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f8fbfd,
            #f3faf6
        );
}

.community-section p {
    margin-bottom: 0;
}

.community-message {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 20px;

    border-radius: 16px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 6px 15px
        rgba(43, 67, 80, .06);
}

.community-message strong {

    color: var(--green);

    font-size: 1.05rem;
}

.community-message span {

    color: #657886;

    font-size: .84rem;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {

    margin-bottom: 60px;

    padding: 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border-radius: 22px;

    background: var(--navy);

    color: #ffffff;
}

.final-cta
.section-eyebrow {

    color: #8fc8ff;
}

.final-cta h2 {

    color: #ffffff;
}

.final-cta p {

    margin: 0;

    color: #c9d8e3;
}

.final-cta-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    justify-content: flex-end;
}

.final-cta-actions a {

    padding:
        9px 12px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

    color: #ffffff;

    font-size: .76rem;

    font-weight: 800;
}

.final-cta-actions a:hover {

    background:
        rgba(255,255,255,.16);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    border-top:
        1px solid
        #dce4e9;

    background:
        #ffffff;
}

.site-footer-inner {

    width:
        min(
            1180px,
            calc(100% - 36px)
        );

    margin: 0 auto;

    padding: 26px 0;

    display: grid;

    grid-template-columns:
        1fr
        auto
        auto;

    align-items: center;

    gap: 22px;
}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 9px;
}

.footer-logo {

    width: 40px;
    height: 40px;

    object-fit: contain;
}

.site-footer strong {

    color: var(--navy);
}

.site-footer p {

    margin:
        3px 0 0;

    color: #75848e;

    font-size: .72rem;
}

.footer-links {

    display: flex;

    gap: 15px;
}

.footer-links a {

    color: #647784;

    font-size: .76rem;

    font-weight: 750;
}

.footer-copy {

    margin: 0 !important;

    text-align: right;
}

/* =========================================================
   FINAL ABOVE-THE-FOLD COMPACT FIX
   ========================================================= */

/* Reduce hero vertical height */
.parent-hero {
    padding:
        24px 18px 18px;
}

.parent-hero-inner {
    gap: 26px;
}

/* Slightly smaller hero title */
.parent-hero h1 {
    font-size:
        clamp(
            1.95rem,
            3.15vw,
            3rem
        );

    line-height: 1.02;
    margin-bottom: 10px;
}

/* Reduce spacing below hero text */
.hero-lead {
    margin-bottom: 12px;
}

.hero-values {
    margin-top: 9px;
}


/* Make the right hero card much shorter */
.hero-brand-card {
    min-height: 185px;
    padding: 15px 18px;
}

.hero-brand-logo {
    width: 62px;
    height: 62px;
}

.hero-brand-card p {
    margin-bottom: 8px;
}


/* Remove the large space before program heading */
.programs-section {
    padding:
        12px 0 46px;
}


/* Compact heading area */
.programs-section .section-heading {
    max-width: 1000px;
    margin:
        0 auto 12px;
}


/* Keep title on one line on desktop */
.programs-section .section-heading h2 {
    max-width: none;
    margin-bottom: 4px;

    font-size:
        clamp(
            1.45rem,
            2.25vw,
            2rem
        );

    white-space: nowrap;
}


/* Compact description */
.programs-section .section-heading p {
    margin-bottom: 0;
    font-size: .78rem;
}


/* Slightly reduce card image height */
.program-image {
    aspect-ratio:
        16 / 8;
}


/* =========================================================
   RESPONSIVE RESET
   ========================================================= */

@media (max-width: 900px) {

    .programs-section .section-heading h2 {
        white-space: normal;
    }

}

@media (max-width: 600px) {

    .parent-hero {
        padding:
            30px 15px 20px;
    }

    .parent-hero h1 {
        font-size: 2.15rem;
    }

    .programs-section {
        padding:
            20px 0 42px;
    }

    .program-image {
        aspect-ratio:
            16 / 9;
    }

}

.parent-hero-visual {
    display: flex;
    justify-content: center;
}

.hero-brand-card {
    width: 88%;
    max-width: 390px;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .site-nav {
        display: none;
    }

   .parent-hero-inner {
    width:
        min(
            1180px,
            100%
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(280px, .7fr);

    align-items: center;

    gap: 38px;
}

    .hero-brand-card {

        min-height: 250px;
    }

    .program-grid {

        grid-template-columns:
            1fr;
    }

    .program-image {

        aspect-ratio:
            16 / 7;
    }

    .program-description {

        min-height: 0;
    }

    .why-section {

        grid-template-columns:
            1fr;
    }

    .how-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .community-section {

        grid-template-columns:
            1fr;
    }

    .final-cta {

        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .final-cta-actions {

        justify-content:
            flex-start;
    }

    .site-footer-inner {

        grid-template-columns:
            1fr;

        text-align: center;
    }

    .footer-brand {

        justify-content:
            center;
    }

    .footer-links {

        justify-content:
            center;
    }

    .footer-copy {

        text-align:
            center;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .site-header-inner {

        width:
            calc(100% - 26px);
    }

    .site-logo {

        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

.parent-hero {
    padding:
        34px 18px 28px;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(115, 84, 199, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 14% 4%,
            rgba(230, 165, 29, .12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbfd 100%
        );
}

    .parent-hero h1 {

        font-size:
            2.5rem;
    }

    .hero-actions {

        flex-direction:
            column;
    }

    .hero-button {

        width: 100%;
    }

    .hero-values {

        flex-direction:
            column;

        gap: 5px;
    }

    .hero-brand-card {

        min-height: 220px;

        padding: 22px;
    }

    .hero-brand-logo {

        width: 86px;
        height: 86px;
    }

    .programs-section,
    .why-section,
    .how-section {

        padding:
            44px 0;
    }

    .program-grid {

        gap: 16px;
    }

    .program-image {

        aspect-ratio:
            16 / 9;
    }

    .program-card-content {

        padding:
            16px;
    }

    .program-description {

        min-height: 0;
    }

    .why-grid {

        grid-template-columns:
            1fr;
    }

    .why-card-wide {

        grid-column: auto;
    }

    .how-grid {

        grid-template-columns:
            1fr;
    }

    .community-section,
    .final-cta {

        width:
            calc(100% - 28px);

        padding: 22px;
    }

    .final-cta-actions {

        width: 100%;

        flex-direction:
            column;
    }

    .final-cta-actions a {

        width: 100%;

        text-align: center;
    }

}

/* =========================================================
   HERITAGE LANGUAGE CHOICE
   MAIN HAHU SKILL HOMEPAGE
   ========================================================= */

.program-heritage .heritage-language-choice {
    margin-top: 15px;
}


/* Heading */

.program-heritage .heritage-language-heading {
    margin-bottom: 10px;
}

.program-heritage .heritage-language-heading strong {
    display: block;

    margin-bottom: 2px;

    color: #173d62;

    font-size: .82rem;
    font-weight: 900;
}

.program-heritage .heritage-language-heading span {
    display: block;

    color: #697b87;

    font-size: .70rem;
    line-height: 1.4;
}


/* =========================================================
   TWO LANGUAGE BUTTONS
   ========================================================= */

.program-heritage .heritage-language-buttons {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 9px;
}


/* Support both class names while we clean the HTML */

.program-heritage .heritage-language-btn,
.program-heritage .heritage-language-button {
    min-width: 0;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;

    padding: 7px 9px;

    border-radius: 11px;

    color: #173d62;

    font-size: .76rem;
    font-weight: 850;

    line-height: 1.15;

    text-decoration: none;

    box-shadow:
        0 4px 10px rgba(35, 55, 75, .10);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


/* TIGRINYA */

.program-heritage .tigrinya-btn,
.program-heritage .heritage-tigrinya-btn {
    border: 1px solid #e99a12;

    background:
        linear-gradient(
            135deg,
            #f8a91d,
            #f3b32c
        );
}


/* AMHARIC */

.program-heritage .amharic-btn,
.program-heritage .heritage-amharic-btn {
    border: 1px solid #eab326;

    background:
        linear-gradient(
            135deg,
            #ffc536,
            #ffd45a
        );
}


/* Hover */

.program-heritage .heritage-language-btn:hover,
.program-heritage .heritage-language-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 7px 15px rgba(35, 55, 75, .15);
}


/* =========================================================
   FIDEL ICON
   ========================================================= */

.program-heritage .heritage-language-letter {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(255, 255, 255, .88);

    color: #8c3e19;

    font-size: 1.15rem;
    font-weight: 900;
}


/* =========================================================
   BUTTON TEXT
   ========================================================= */

.program-heritage .heritage-language-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    line-height: 1.1;
}

.program-heritage .heritage-language-text small {
    margin-bottom: 2px;

    color: #71541e;

    font-size: .55rem;
    font-weight: 750;
}

.program-heritage .heritage-language-text strong {
    color: #173d62;

    font-size: .78rem;
    font-weight: 900;

    white-space: nowrap;
}


/* =========================================================
   HERITAGE CARD SPACING
   ========================================================= */

.program-heritage .program-description {
    min-height: auto;

    margin-bottom: 11px;
}

.program-heritage .program-features {
    margin-bottom: 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .program-heritage .heritage-language-buttons {
        grid-template-columns: 1fr;
    }

    .program-heritage .heritage-language-btn,
    .program-heritage .heritage-language-button {
        min-height: 48px;
    }

}

/* =========================================================
HAHU SKILL MAIN HOME PAGE — MOBILE FIX
========================================================= */

@media (max-width: 768px) {

/* -----------------------------------------
PAGE / SECTION WIDTH
----------------------------------------- */

.parent-hero,
.programs-section,
.why-section {
width: 100%;
overflow-x: hidden;
}

.parent-hero-inner,
.program-grid,
.why-grid {
width: 100%;
max-width: 100%;
}


/* -----------------------------------------
HERO — STACK INTO ONE COLUMN
----------------------------------------- */

.parent-hero-inner {
display: grid;
grid-template-columns: 1fr !important;
gap: 24px;

padding: 30px 20px;
}

.parent-hero-content {
width: 100%;
min-width: 0;
max-width: none;
}

.parent-hero-visual {
width: 100%;
min-width: 0;
max-width: 100%;

margin: 0;
}


/* -----------------------------------------
HERO TEXT
----------------------------------------- */

.hero-eyebrow {
display: block;

max-width: none;

font-size: 0.78rem;
line-height: 1.45;
}

.parent-hero h1 {
width: 100%;

margin-bottom: 16px;

font-size: clamp(
2.25rem,
12vw,
3.4rem
);

line-height: 0.98;

word-break: normal;
overflow-wrap: normal;
}

.hero-lead {
width: 100%;
max-width: none;

font-size: 1rem;
line-height: 1.6;

word-break: normal;
overflow-wrap: normal;
}


/* -----------------------------------------
HERO BUTTONS
----------------------------------------- */

.hero-actions {
width: 100%;

display: grid;
grid-template-columns: 1fr;
gap: 10px;
}

.hero-button {
width: 100%;

min-height: 48px;

display: flex;
align-items: center;
justify-content: center;

padding: 12px 16px;

text-align: center;
}


/* -----------------------------------------
HERO VALUES
----------------------------------------- */

.hero-values {
display: flex;
flex-wrap: wrap;

gap: 8px 14px;

margin-top: 14px;

font-size: 0.82rem;
}


/* -----------------------------------------
THREE LEARNING PATHWAYS CARD
----------------------------------------- */

.hero-brand-card {
width: 100%;
max-width: 100%;

margin: 0 auto;

padding: 24px 18px;
}

.hero-brand-logo {
width: 72px;
height: auto;

margin-inline: auto;
}

.hero-brand-card strong {
display: block;

font-size: 1.35rem;
line-height: 1.25;

text-align: center;
}

.hero-brand-card p,
.hero-brand-small,
.hero-pathway-preview {
text-align: center;
}


/* -----------------------------------------
PROGRAM SECTION
----------------------------------------- */

.programs-section {
padding-inline: 20px;
}

.section-heading {
width: 100%;
max-width: 100%;
}

.section-heading h2 {
font-size: 1.8rem;
line-height: 1.15;
}

.program-grid {
display: grid;
grid-template-columns: 1fr !important;

gap: 20px;
}

.program-card {
width: 100%;
min-width: 0;
max-width: 100%;
}

.program-image img {
width: 100%;
height: auto;
}


/* -----------------------------------------
HERITAGE LANGUAGE BUTTONS
----------------------------------------- */

.heritage-language-buttons {
display: grid;
grid-template-columns: 1fr 1fr;

gap: 10px;
}

.heritage-language-btn {
width: 100%;
min-width: 0;

padding: 10px 8px;
}


/* -----------------------------------------
WHY HAHU SECTION
----------------------------------------- */

.why-section {
padding-inline: 20px;
}

.why-content {
width: 100%;
max-width: 100%;
}

.why-grid {
display: grid;
grid-template-columns: 1fr !important;

gap: 16px;
}

.why-card {
width: 100%;
min-width: 0;
}
}


/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 480px) {

.parent-hero-inner {
padding: 24px 16px;
}

.parent-hero h1 {
font-size: clamp(
2rem,
11vw,
2.85rem
);
}

.hero-lead {
font-size: 0.96rem;
}

.programs-section,
.why-section {
padding-inline: 16px;
}

.heritage-language-buttons {
grid-template-columns: 1fr;
}

.hero-values {
flex-direction: column;
align-items: flex-start;

gap: 5px;
}
}



