body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    padding: var(--space-4) var(--space-10);
    background: var(--pink-500);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    width: 375.8px;
    height: 32px;
}

.navbar__brand {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.navbar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-10);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-sm);
    text-decoration: none;
    cursor: pointer;
}

.navbar__dropdown-toggle span {
    font: inherit;
    color: inherit;
}

.navbar__dropdown-toggle i,
.navbar__dropdown-toggle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.navbar__dropdown:hover .navbar__dropdown-toggle i,
.navbar__dropdown:hover .navbar__dropdown-toggle svg,
.navbar__dropdown:focus-within .navbar__dropdown-toggle i,
.navbar__dropdown:focus-within .navbar__dropdown-toggle svg {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    margin: 0;
    padding: 12px 0;
    padding-top: 12px;
    list-style: none;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    display: none;
    z-index: 100;
}

.navbar__dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
}

.navbar__dropdown:hover > .navbar__dropdown-menu,
.navbar__dropdown:focus-within > .navbar__dropdown-menu {
    display: block;
}

.navbar__dropdown-menu li {
    list-style: none;
}

.navbar__dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--grey-950);
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-size: var(--text-body-sm);
}

.navbar__dropdown-menu a:hover {
    background: var(--pink-100);
}

.navbar__dropdown svg,
.navbar__dropdown .lucide {
    width: 16px;
    height: 16px;
    color: var(--color-white);
    stroke-width: 2;
    flex-shrink: 0;
}

.navbar__link,
.navbar__link a {
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-sm);
    text-decoration: none;
    cursor: pointer;
}

.navbar__button {
    padding: var(--space-3) var(--space-5);
    background: var(--pink-100);
    border-radius: var(--space-3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.navbar__button:hover {
    background: var(--pink-150);
}



.navbar__button-text {
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-lg);
}

.page {
    width: 100%;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ========================== Hero ========================== */

.hero {
    align-self: stretch;
    min-height: 600px;
    padding: 60px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.116);
}

.hero__slide:nth-child(1) {
    background-image: url("../images/WSTF-home-hero-slide1.jpg");
}

.hero__slide:nth-child(2) {
    background-image: url("../images/WSTF-home-hero-slide2.jpg");
}

.hero__slide:nth-child(3) {
    background-image: url("../images/WSTF-home-hero-slide3.jpg");
}
.hero__slide:nth-child(4) {
    background-image: url("../images/WSTF-home-hero-slide4.jpg");
}

.hero__slide--active {
    opacity: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-10);
}

.hero__pagination {
    position: absolute;
    left: 50%;
    bottom: var(--space-6);
    transform: translateX(-50%);
    z-index: 3;
}

.hero__title {
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: var(--text-h2);
    /* Use 48px token */
    font-style: italic;
    font-weight: var(--font-bold);
    line-height: var(--leading-h2);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
    width: 260px;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

/* ========================== Programs ========================== */

.programs {
    align-self: stretch;
    padding: 80px var(--space-10) var(--space-32);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-10);
}

.programs__grid {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.program-card {
    flex: 1;
    height: 200px;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    background: var(--pink-500);
    border: 1px solid var(--pink-500);
    border-radius: 16px;
    overflow: hidden;
}

.program-card__title {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: var(--text-h4);
    font-weight: var(--font-semibold);
    line-height: var(--leading-h4);
}

.program-card__description {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
}

.programs__note {
    margin: 0;
    text-align: center;
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-sm);
    font-style: italic;
    font-weight: var(--font-regular);
    line-height: var(--leading-body-sm);
}

/* ==========================
   Quote
========================== */

.quote {
    align-self: stretch;
    padding: var(--space-32) var(--space-10);
    display: flex;
    justify-content: center;
}

.quote__container {
    width: 100%;
    max-width: 1024px;
    height: 600px;
    position: relative;
}

/* Image */

.quote__image-wrapper {
    position: absolute;
    left: 0;
    top: 0;

    width: 380px;
    height: 600px;
    border-radius: 40px;

}

.quote__image {
    position: absolute;
    left: -100px;
    top: 20px;
    width: 580px;
    height: 580px;
    object-fit: contain;
}

/* Content */

.quote__content {
    position: absolute;
    left: 420px;
    top: 162px;

    width: 604px;
    height: 276px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);

    text-align: center;
}

.quote__text {
    margin: 0;

    color: var(--grey-950);
    font-family: var(--font-family-display);
    font-size: var(--text-h4);
    font-style: italic;
    font-weight: var(--font-regular);
    line-height: 40px;
}

.quote__author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote__name,
.quote__role {
    margin: 0;
}

.quote__name {
    color: var(--pink-500);

    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: var(--font-semibold);
    line-height: 24px;
}

.quote__role {
    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-caption);
    font-weight: var(--font-regular);
    line-height: 20px;
}

/* ==========================
   About
========================== */

.about {
    align-self: stretch;
    padding: var(--space-32) var(--space-10);

    display: flex;
    justify-content: center;
}

.about__container {
    width: 100%;
    max-width: 1280px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about__content {
    width: 100%;
    max-width: 640px;

    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.about__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.about__eyebrow {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 28px;

    text-transform: uppercase;
}

.about__title {
    margin: 0;

    color: var(--pink-500);

    font-family: var(--font-family-primary);
    font-size: var(--text-h2);
    font-weight: var(--font-bold);
    line-height: var(--leading-h2);
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.about__text {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
}

.about__image {
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

/* ========================== Expectations ========================== */

.expectations {
    align-self: stretch;
    padding: var(--space-32) var(--space-10);
    display: flex;
    justify-content: center;
}

.expectations__container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-20);
}

.expectations__header {
    width: 100%;
    max-width: 684px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.expectations__title {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-h2);
    font-weight: var(--font-bold);
    line-height: var(--leading-h2);

    text-align: center;
}

.expectations__subtitle {
    margin: 0;
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--font-regular);
    line-height: var(--leading-body-lg);
    text-align: center;
}

.expectations__image {
    width: 100%;
    max-width: 1280px;
    height: auto;
    aspect-ratio: 16 / 7;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.expectations__description {
    width: 100%;
    max-width: 836px;
    margin: 0;
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);

    text-align: center;
}

/* ========================== Why ========================== */

.why {
    align-self: stretch;
    padding: var(--space-32) var(--space-10);

    display: flex;
    justify-content: center;
}

.why__container {
    width: 100%;
    max-width: 1280px;

    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.why__heading {
    display: inline-flex;
    align-items: center;
}

.why__heading-text {
    padding: 0 6px;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: 32px;
    font-weight: var(--font-semibold);
    line-height: 40px;
}

.why__heading-highlight {
    padding: 0 6px;
    background: var(--pink-500);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-family-secondary);
    font-size: 32px;
    font-style: italic;
    font-weight: var(--font-regular);
    line-height: 40px;
}

.why__grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--space-6);
}

.why-card {
    flex: 1;
    min-height: 300px;
    padding: var(--space-6);

    display: flex;
    flex-direction: column;
    gap: var(--space-10);

    background: var(--grey-150);
    border-radius: 16px;
}

.why-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--grey-150);
    color: var(--color-white);
}

.why-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.why-card__title {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-h5);
    font-weight: var(--font-semibold);
    line-height: var(--leading-h5);
}

.why-card__description {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
}
/* ==========================
   Quote Callout
========================== */

.quote-callout {
    align-self: stretch;
    padding: var(--space-32) var(--space-10);

    display: flex;
    justify-content: center;
}

.quote-callout__container {
    width: 100%;
    max-width: 770px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.quote-callout__text {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-display);
    font-size: var(--text-h4);
    font-style: italic;
    font-weight: var(--font-regular);
    line-height: 40px;
    text-align: center;
}

.quote-callout__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.quote-callout__name,
.quote-callout__role {
    margin: 0;
}

.quote-callout__name {
    color: var(--pink-500);

    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: var(--font-semibold);
    line-height: 24px;

    text-align: center;
}

.quote-callout__role {
    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-caption);
    font-weight: var(--font-regular);
    line-height: 20px;

    text-align: center;
}
/* ==========================
   CTA
========================== */

.cta {
    align-self: stretch;
    padding: var(--space-40) var(--space-10);

    display: flex;
    justify-content: center;
}

.cta__container {
    width: 100%;
    max-width: 600px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.cta__title {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-h2);
    font-weight: var(--font-bold);
    line-height: var(--leading-h2);

    text-align: center;
}

.cta__description {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);

    text-align: center;
}

.cta__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);

    padding: 12px 20px;

    background: var(--pink-500);
    border-radius: 12px;

    text-decoration: none;
    cursor: pointer;
}

.cta__button:hover {
    background: var(--pink-600);
}

.cta__button-text {
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: var(--font-semibold);
    line-height: 24px;
}
/* ==========================
   Footer
========================== */

.footer {
    align-self: stretch;
    padding: var(--space-40) var(--space-10) var(--space-10);
    background: var(--grey-100);
    display: flex;
    justify-content: center;
}

.footer__container {
    width: 100%;
    max-width: 1280px;

    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__brand {
    width: 100%;
    max-width: 360px;

    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.footer__image {
    width: 100%;
    max-width: 360px;
    height: auto;

    display: block;
    object-fit: cover;
}

.footer__description {
    margin: 0;

    color: var(--grey-900);

    font-family: var(--font-family-primary);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--leading-body);
}

.footer__content {
    width: 100%;
    max-width: 772px;
    min-height: 450px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__navigation {
    width: 100%;
    max-width: 686px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.footer__heading {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: var(--font-semibold);
    line-height: 24px;
}

.footer__links {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__link {
    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: var(--text-caption);
    font-weight: var(--font-regular);
    line-height: 20px;

    text-decoration: none;
}

.footer__contact {
    padding: var(--space-5);

    background: var(--pink-500);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.footer__contact .footer__heading {
    color: var(--color-white);
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);

    flex: 1;
}

.footer__contact-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--space-6);
}

.footer__divider {
    width: 1px;
    align-self: stretch;

    background: var(--color-white);

    border-radius: 1px;

    flex-shrink: 0;
}

.footer__contact-icon {
    width: 32px;
    height: 32px;
    padding: 6px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--pink-100);
    border-radius: 6px;

    flex-shrink: 0;
}

.footer__contact-icon svg,
.footer__contact-icon .lucide {
    width: 20px;
    height: 20px;

    color: var(--grey-950);
    stroke-width: 2;

    flex-shrink: 0;
}

.footer__contact-text {
    color: var(--color-white);

    font-family: var(--font-family-primary);
    font-size: var(--text-caption);
    font-weight: var(--font-regular);
    line-height: 20px;
}

.footer__partners {
    padding: var(--space-5) var(--space-10);

    background: var(--grey-200);
    border-radius: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__partner-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.footer__logo {
    display: block;
    max-height: 40px;
    width: auto;
}

.footer__bottom {
    display: flex;
    align-items: center;
}

.footer__copyright {
    margin: 0;

    color: var(--grey-950);

    font-family: var(--font-family-primary);
    font-size: 12px;
    font-weight: var(--font-regular);
    line-height: 16px;
}


/* new add ons */
/* ==========================
   Hamburger + Mobile Menu Drawer
   Trigger shows from 1080px and below.
========================== */

.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.navbar__hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Full-screen drawer. Hidden/inert until JS toggles is-open / is-closing. */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.is-open,
.mobile-menu.is-closing {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
    opacity: 1;
}

/* Panel starts off-screen right, slides in to cover the screen.
   On close it continues the same direction, exiting past the left edge. */
.mobile-menu__panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--pink-500);
    display: flex;
    flex-direction: column;
    padding: var(--space-6);
    padding-top: calc(var(--space-6) + 20px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu.is-closing .mobile-menu__panel {
    transform: translateX(-100%);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-16);
}

.mobile-menu__logo {
    height: 24px;
    width: auto;
}

.mobile-menu__close {
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
}

.mobile-menu__close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    margin-top: var(--space-8);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(245, 241, 241, 0.15);
}


.mobile-menu__item i {
    color: var(--color-white);
    width: 18px;
    height: 18px;
}

/* ==========================
   Mobile Dropdown Accordion
========================== */
.mobile-menu__dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.mobile-menu__dropdown-toggle {
    width: 100%;
    padding: var(--space-5) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: 28px;
    font-weight: var(--font-semibold);
    cursor: pointer;
}

.mobile-menu__dropdown-toggle i,
.mobile-menu__dropdown-toggle svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.mobile-menu__dropdown.is-open .mobile-menu__dropdown-toggle i,
.mobile-menu__dropdown.is-open .mobile-menu__dropdown-toggle svg,
.mobile-menu__dropdown-toggle[aria-expanded="true"] i,
.mobile-menu__dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* ==========================
   Mobile Dropdown Accordion
   Enhanced with open/close animation
========================== */
.mobile-menu__submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.5rem;
    opacity: 0;
    transition:
        max-height .35s ease,
        opacity .25s ease,
        padding .35s ease;
}


.mobile-menu__dropdown.is-open .mobile-menu__submenu {
    max-height: 300px;
    opacity: 1;
    padding: .75rem 0 1rem 1.5rem;
}

.mobile-menu__submenu li {
    list-style: none;
}

.mobile-menu__submenu .mobile-menu__link {
    display: block;
    padding: .45rem 0;
    font-size: 18px;
    font-weight: var(--font-regular);
    opacity: 1;
    transform: translateY(6px);
    transition:
        transform .3s ease,
        color .2s ease;
}

.mobile-menu__submenu .mobile-menu__link:hover {
    color: var(--pink-100);
}

.mobile-menu__dropdown.is-open .mobile-menu__submenu .mobile-menu__link {
    transform: translateY(0);
}

/* Links fade/slide in with a stagger, only once the drawer is open */
.mobile-menu__link {
    display: block;
    padding: var(--space-5) 0;
    color: var(--color-white);
    font-family: var(--font-family-primary);
    font-size: 28px;
    font-weight: var(--font-semibold);
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.is-open .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__item:nth-child(1) .mobile-menu__link { transition-delay: 0.15s; }
.mobile-menu__item:nth-child(2) .mobile-menu__link { transition-delay: 0.22s; }
.mobile-menu__item:nth-child(3) .mobile-menu__link { transition-delay: 0.29s; }
.mobile-menu__item:nth-child(4) .mobile-menu__link { transition-delay: 0.36s; }

.mobile-menu__button {
    margin-top: auto;
    text-align: center;
    padding: var(--space-4) var(--space-5);
    background: var(--pink-100);
    border-radius: var(--space-3);
    color: var(--grey-950);
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-weight: var(--font-semibold);
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.42s;
}

.mobile-menu.is-open .mobile-menu__button {
    opacity: 1;
    transform: translateY(0);
}

/* Locks background scroll while the drawer is open (toggled via JS) */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 1080px) {
    .navbar__content {
        display: none;
    }
    .navbar__hamburger {
        display: flex;
    }
    .navbar__dropdown-menu {
        display: none !important;
    }
}

/* ========================== Tablet (<=1024px) ========================== */
@media (max-width: 1024px) {
    .navbar,
    .hero,
    .programs,
    .quote,
    .about,
    .expectations,
    .why,
    .quote-callout,
    .cta,
    .footer {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }

    /* .programs__grid / .why__grid are display:flex in style.css, not grid —
       grid-template-columns had no effect. Use flex-wrap instead. */
    .programs__grid,
    .why__grid {
        flex-wrap: wrap;
    }
    .program-card,
    .why-card {
        flex: 1 1 calc(50% - var(--space-6));
    }

    .about__container,
    .footer__top,
    .footer__content {
        flex-direction: column;
        gap: var(--space-10);
    }
    .about__content,
    .about__image {
        max-width: 100%;
    }

    /* footer__content has min-height:450px in base css — clear it once stacked */
    .footer__content {
        min-height: auto;
    }
    .footer__navigation {
        flex-wrap: wrap;
        gap: var(--space-8);
    }

    /* Quote section uses position:absolute with fixed px offsets in base css.
       flex-direction alone can't restack absolutely positioned children —
       reset positioning here so the column layout actually applies. */
    .quote__container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-8);
    }
    .quote__image-wrapper {
        position: static;
        width: 100%;
        max-width: 380px;
        height: auto;
    }
    .quote__image {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 380px;
        height: auto;
    }
    .quote__content {
        position: static;
        width: 100%;
        max-width: 604px;
        height: auto;
    }

    .expectations__container {
        text-align: center;
    }

    .hero__title {
        font-size: 56px;
    }
}

/* ========================== Mobile (<=768px) ========================== */
@media (max-width: 768px) {
    .navbar {
        padding: var(--space-4) var(--space-6);
    }
    /* navbar__logo has a fixed 375.8px width in base css — let it shrink */
    .navbar__logo {
        width: auto;
        max-width: 220px;
        height: 24px;
    }

    .hero {
        min-height: auto;
        padding: var(--space-16) var(--space-6);
    }
    .hero__content {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    .hero__title {
        font-size: 40px;
        line-height: 1.2;
        text-align: center;
    }
    /* hero__description has a fixed width:260px in base css */
    .hero__description {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .about__text,
    .expectations__description,
    .quote__text,
    .cta__description {
        text-align: center;
    }

    .programs__grid,
    .why__grid {
        flex-direction: column;
    }
    .program-card {
        height: auto; /* base has fixed height:200px, can overflow with wrapped text */
        flex: 1 1 100%;
    }
    .why-card {
        flex: 1 1 100%;
    }

    /* .about__image / .expectations__image ARE the <img> tags in the markup
       (not wrappers) — target them directly, not ".about__image img" */
    .about__image,
    .expectations__image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .footer__navigation,
    .footer__contact-list,
    .footer__logos {
        flex-direction: column;
        align-items: flex-start;
    }
    /* footer__divider was a 1px vertical bar meant for a row layout —
       flip it to horizontal now that items stack */
    .footer__divider {
        width: 100%;
        height: 1px;
    }
    .footer__partners {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-6);
    }
}

/* ========================== Small Mobile (<=480px) ========================== */
@media (max-width: 480px) {
    .navbar,
    .hero,
    .programs,
    .quote,
    .about,
    .expectations,
    .why,
    .quote-callout,
    .cta,
    .footer {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
    .hero__title {
        font-size: 32px;
    }
    .hero__description,
    .program-card__description,
    .why-card__description,
    .footer__description,
    .footer__copyright {
        font-size: var(--text-caption);
    }
    .cta__title,
    .about__title,
    .expectations__title {
        font-size: var(--text-h3);
    }
    /* .why__heading is a wrapper div — its children (.why__heading-text /
       .why__heading-highlight) set their own font-size explicitly, so
       overriding .why__heading itself had no effect */
    .why__heading-text,
    .why__heading-highlight {
        font-size: var(--text-h3);
        line-height: 1.3;
    }
    .quote__text,
    .quote-callout__text {
        font-size: var(--text-h5);
        line-height: 32px;
    }
}
