* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--primary-font);
}

body.show-admin-bar header {
    top: 40px;
}

body.show-admin-bar .submenu-wrap {
    top: 169px;
}

@media (max-width: 991px) {
    body.show-admin-bar .submenu-wrap {
        top: 135px;
    }
}

.container-fluid {
    --bs-gutter-x: 3rem;
}

a {
    color: var(--mg-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--mg-color), transparent 20%);
}

.header {
    padding: 24px 0 24px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}


.header .header-container {
    background-color: #EDE9E580;
    border-radius: 100px;
    padding: 16px 12px;
    backdrop-filter: blur(4px);
}

.header--wide {
    padding-left: 24px;
    padding-right: 24px;
}

.header--wide .header-container {
    max-width: none;
}

.page--index .container-xl {
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
}

.header .logo {
    padding: 5px 24px;
    max-width: 160px;
}

.header .logo img {
    width: 100%;
    height: auto;
}

.header .language-switcher ul {
    margin: 0;
}

.header .language-switcher ul li.list-inline-item {
    margin-right: 0;
}

.header .language-switcher ul li a {
    color: #A99C87;
    transition: .3s;
}

.header .language-switcher ul li a.active {
    color: #000;
}

.header .language-switcher ul li a:hover {
    color: #000;
    transition: .3s;
}

.header .language-switcher ul li.list-inline-item:not(:last-child):after {
    content: "|";
    margin: 0 .5rem;
    color: #A99C87;
}

.header .btn-callus {
    margin: 0;
    background-color: var(--mg-color);
    font-size: 15px;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    padding: 13px 20px;
    white-space: nowrap;
}

.mobile-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #EDE9E5;
    box-shadow: none;
    outline: 0;
    appearance: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-direction: column;
    cursor: pointer;
}

.mobile-nav-toggle:focus,
.mobile-nav-toggle:focus-visible {
    outline: none;
    box-shadow: none;
}

.mobile-nav-toggle span {
    display: block;
    width: 32px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 999px;
}

/*------------------------------------------------
# Call-To-Action
------------------------------------------------*/


.call-to-action .call-to-action-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/logo_item_large.svg");
    background-repeat: no-repeat;
    background-position: 50% 0;
    pointer-events: none;
    z-index: 0;
}

.call-to-action .call-to-action-inner>.row {
    position: relative;
    z-index: 1;
}


.call-to-action .btn-learnmore {
    background: #EDE9E5;
    border: 0;
    font-weight: 500;
    border-radius: 999px;
    text-transform: uppercase;
    color: #000;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.call-to-action .btn-learnmore:hover {
    background-color: var(--mg-color);
    color: #fff;
}

.call-to-action h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 300;
}

.call-to-action h1 span {
    color: var(--mg-color);
    font-weight: 600;
}


/*------------------------------------------------
# Services
------------------------------------------------*/

.svc-unit {
    height: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-header {
    height: 50px;
    background: #EDE9E5;
    border-radius: 14px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.services-header__logo {
    height: 28px;
    width: auto;
    display: block;
}

.svc-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    transform: translateY(0);
    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.svc-card--full {
    height: 320px;
}

.svc-unit .svc-card {
    flex: 1;
    min-height: 0;
}

.svc-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition:
        transform .45s ease,
        filter .35s ease;
}

.svc-bottom {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        background .28s ease,
        transform .28s ease,
        border-color .28s ease;
    border: 1px solid rgba(255, 255, 255, .08);
}

.svc-bottom__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.svc-bottom__icon {
    width: 16px;
    height: 16px;
    transform: translateX(0);
    transition: transform .25s ease;
}

.svc-bottom__label {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
    overflow: hidden;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.svc-bottom__cta {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    flex: 0 0 auto;
    transform: scale(1);
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.svc-bottom__cta img {
    height: 14px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: translateX(0);
    transition: transform .25s ease;
}


.svc-card:hover>img,
.svc-card:focus-visible>img {
    transform: scale(1.06);
    filter: brightness(.92);
}

.svc-card:hover .svc-bottom__cta,
.svc-card:focus-visible .svc-bottom__cta {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .42);
    transform: scale(1.08) rotate(-45deg);
}

.svc-card:focus-visible {
    outline: 2px solid rgba(80, 184, 72, .85);
    outline-offset: 3px;
}

.index-news-map {
    padding: 0;
}

.index-news-map__map-panel {
    background: rgba(237, 233, 229, 0.35);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.index-news-map__title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.index-news-map__title .svc-bottom__icon {
    width: 16px;
    height: 16px;
    margin-top: 5px;
    flex: 0 0 auto;
}

.index-news-map__heading {
    margin: 0;
    max-width: 280px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    color: #111111;
}

.index-news-map__map {
    width: 77%;
    flex: 1 1 auto;
    min-height: 0;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    align-self: center;
}

.index-news-map .contact-map-legend {
    margin-top: 8px;
    gap: 26px;
    align-items: center;
    justify-content: center;
}

.index-news-map .contact-map-legend span {
    gap: 14px;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.index-news-map .legend-dot {
    width: 7px;
    height: 7px;
    margin-right: 0;
}

.index-news-map .legend-dot--green {
    background: #38a844;
    box-shadow: 10px 0 0 #6fd56b;
    margin-right: 10px;
}

.index-news-map .legend-dot--blue {
    background: #1d98ab;
    box-shadow: 10px 0 0 #49c7d7, 20px 0 0 #84dce7;
    margin-right: 20px;
}

.index-news-map .news-card {
    display: flex;
    align-items: stretch;
    background: #222222;
    min-height: 0;
}

.index-news-map .news-card__title,
.index-news-map .news-card__excerpt,
.index-news-map .news-card__link {
    color: #ffffff;
}

.index-news-map__media {
    width: 267px;
    flex: 0 0 267px;
    min-width: 0;
    align-self: stretch;
    position: static;
    overflow: hidden;
    background: #151515;
}

.index-news-map__media .news-card__image {
    position: static;
    width: 267px;
    max-width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

@media (min-width: 992px) {
    .index-news-map__news {
        height: 100%;
    }

    .index-news-map__news-list {
        display: grid;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        flex: 1 1 auto;
        min-height: 0;
    }

    .index-news-map__map-panel {
        height: 568.84px;
    }

    .index-news-map__map {
        width: 100%;
        max-width: 550px;
        margin: -42px auto 0;
    }
}

@media (max-width: 991px) {
    .index-news-map {
        padding-bottom: 0;
    }

    .index-news-map__heading {
        max-width: none;
        font-size: 20px;
    }

    .index-news-map__title {
        gap: 8px;
    }

    .index-news-map .contact-map-legend {
        gap: 16px;
        font-size: 15px;
    }

    .index-news-map .contact-map-legend span {
        gap: 12px;
        white-space: nowrap;
    }

    .index-news-map .contact-map-legend {
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .index-news-map__map-panel {
        padding: 14px 12px;
    }

    .index-news-map .news-card {
        flex-direction: column;
    }

    .index-news-map__media {
        width: 100%;
        flex: 0 0 auto;
    }

    .index-news-map__media .news-card__image {
        position: static;
        width: 100%;
        aspect-ratio: 16 / 10;
        height: auto;
        object-fit: cover;
    }
}


/*------------------------------------------------
# Navigation
------------------------------------------------*/

@media (min-width: 992px) {

    .header .header-container {
        justify-content: space-between;
    }


    .navmenu {
        padding: 0 32px;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        gap: 40px;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--mg-color);
    }

}

@media (max-width: 991px) {
    .header {
        padding: 0 0 24px 0;
    }

    .header--wide {
        padding-left: 0;
        padding-right: 0;
    }

    .page--index .container-xl {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header .header-container {
        border-radius: 0;
    }

    .header .header-container {
        justify-content: space-between;
        gap: 12px;
        padding: 12px 12px;
    }

    .header .logo {
        padding: 4px 0;
        max-width: 120px;
        margin-right: 0 !important;
        order: 0;
    }

    .header .language-switcher {
        display: none;
    }

    .header .btn-callus {
        padding: 10px 16px;
        font-size: 13px;
        order: 2;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        order: 3;
    }

    .navmenu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        padding: 12px;
        background: #ede9e5;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 9997;
    }

    .navmenu ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        padding: 6px 8px;
        margin: 0;
    }

    .navmenu.mobile-open {
        display: block;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: .3px;
        display: block;
        padding: 8px 6px;
    }

    .navmenu .language-switcher {
        display: block;
        padding: 6px 6px 2px;
    }

    .navmenu .language-switcher ul {
        display: flex;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .navmenu .language-switcher ul li {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .3px;
    }


    .navmenu .language-switcher ul li:not(:last-child):after {
        content: "|";
        margin: 0 .5rem;
        color: #A99C87;
    }
}

/* =========================
   SUBMENU WRAPPER ALIGNMENT
   ========================= */

.submenu-wrap {
    position: sticky;
    top: 129px;
    z-index: 99;
    background-color: transparent;
}

@media (max-width: 991px) {
    .submenu-wrap {
        position: sticky;
        top: 105px;
        z-index: 99;
        background-color: transparent;
    }
}

/* =========================
   SUBMENU CONTAINER
   ========================= */

.submenu {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.submenu::-webkit-scrollbar {
    display: none;
}

.submenu {
    scrollbar-width: none;
}


/* =========================
   SUBMENU ITEMS
   ========================= */

.submenu__item {
    flex: 0 0 auto;
    /* prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;

    padding: 16px 40px;
    background: #ede9e5;
    border-radius: 12px;
    position: relative;

    white-space: nowrap;
    /* keep text on one line */
    transition: 0.3s ease;
}

/* Hover effect (optional but recommended) */
.submenu__item:hover {
    background: #e2ddd7;
}


/* =========================
   ACTIVE STATE
   ========================= */

.submenu__item--active {
    background: #50b848;
}

.submenu__item--active .submenu__text {
    color: white;
    position: relative;
    z-index: 1;
}


/* =========================
   ICON
   ========================= */

.submenu__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 32px), -50%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.submenu__icon img {
    width: 31px;
    height: auto;
}


/* =========================
   TEXT
   ========================= */

.submenu__text {
    font-size: 18px;
    font-weight: 400;
    color: black;
    line-height: 1.2;
    display: flex;
    align-items: center;
}


/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 576px) {

    .submenu {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 0;
        overflow-x: visible;
    }

    .submenu__item {
        min-width: 0;
        width: 100%;
        justify-content: center;
        padding: 10px 8px;
        gap: 6px;
    }

    .submenu__text {
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }

    .submenu__icon {
        top: 50%;
        left: 50%;
        transform: translate(calc(-50% - 20px), -50%);
        opacity: 0.85;
    }

    .submenu__icon img {
        width: 22px;
        height: auto;
    }
}

/* align content with header and submenu */
.content {
    padding: 32px 12px 0px;
    position: relative;
}

/* =========================
   ABOUT US PAGE
   ========================= */

.content .about {
    display: flex;
    width: 1044px;
    align-items: flex-start;
    gap: 24px;
    padding: 0px 0px 56px;
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #000000;
}

.about .title {
    display: flex;
    width: 364px;
    align-items: center;
    gap: 12px;
    position: relative;
}

.about .icon-element {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.about .icon-div {
    position: relative;
    width: 22.22px;
    height: 20px;
}

.about .vector {
    top: 11.11%;
    left: 35.00%;
    position: absolute;
    width: 65.00%;
    height: 88.89%;
}

.about .img {
    top: 0;
    left: 0;
    position: absolute;
    width: 65.00%;
    height: 88.89%;
}

.about .title-txt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.about .about-us__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: -1.00px;
    font-weight: 700;
    color: var(--black);
    font-size: 32px;
    letter-spacing: -0.96px;
    line-height: 32px;
    white-space: nowrap;
    margin: 0;
}

.about .about__title-icon {
    width: 22.22px;
    height: 20px;
    flex: 0 0 auto;
}

.about .content-box {
    display: flex;
    flex-direction: column;
    width: 656px;
    align-items: flex-start;
    justify-content: center;
    gap: 33px;
    position: relative;
}

.about .top-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.about .top-wrapper__text {
    position: relative;
    flex: 1;
    margin-top: -1.00px;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    letter-spacing: 0.22px;
    line-height: 24px;
}

.about .subheader-text-wrapper {
    font-weight: 700;
    letter-spacing: 0.05px;
}

.about .span {
    font-size: 18px;
    letter-spacing: 0.03px;
}

.about .content-text-wrapper {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.03px;
}

.about .about__lead-strong {
    font-weight: 700;
    letter-spacing: 0.05px;
}

.about .bottom-wrapper {
    display: flex;
    flex-direction: column;
    width: 656px;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 0px 30px 0px 0px;
    position: relative;
    flex: 0 0 auto;
}

.about .frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.about .div-subheader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--light-beige);
    background: #ede9e5;
    border-radius: 6px;
}

.about .paragraph-title {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0.24px;
    line-height: 24px;
    white-space: nowrap;
}

.about .about__block-title {
    margin: 0;
}

.about .p {
    position: relative;
    align-self: stretch;
    font-weight: 300;
    color: #000000;
    font-size: 18px;
    letter-spacing: 0.18px;
    line-height: 24px;
}


/* =========================
   STORY ITEMS
   ========================= */

.story {
    display: flex;
    flex-direction: column;
    width: 1044px;
    align-items: flex-start;
    gap: 32px;
    padding: 56px 0px;
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #00000033;
}

.story .title {
    display: flex;
    width: 267px;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
}

.story .icon-element {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.story .icon-div {
    position: relative;
    width: 22.22px;
    height: 20px;
}

.story .vector {
    top: 11.11%;
    left: 35.00%;
    position: absolute;
    width: 65.00%;
    height: 88.89%;
}

.story .img {
    top: 0;
    left: 0;
    position: absolute;
    width: 65.00%;
    height: 88.89%;
}

.story .title-txt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    margin-right: -1.22px;
}

.story .our-story {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: -1.00px;
    font-weight: 700;
    color: var(--black);
    font-size: 32px;
    letter-spacing: -0.96px;
    line-height: 32px;
    white-space: nowrap;
}

.story .cards {
    display: flex;
    align-self: stretch;
    width: 100%;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.story .card-panel {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.story .element-2 {
    display: inline-flex;
    flex-direction: column;
    /*align-items: flex-end;*/
    gap: 16px;
    padding: 320px 0px 160px 24px;
    position: relative;
    flex: 0 0 auto;
}

.story .bgr {
    /*justify-content: flex-end;*/
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--light-beige);
    background: #ede9e5;
    border-radius: 12px;
}

.story .subheader-text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-weight: 600;
    color: var(--black);
    font-size: 20px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.story .list-item {
    display: flex;
    flex-direction: column;
    width: 461px;
    align-items: flex-start;
    gap: 10px;
    padding: 24px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--light-beige);
    background: #ede9e5;
    border-radius: 12px;
}

.story .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.story .card-title {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-weight: 700;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
}

.story .mid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.story .card-text {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-weight: 300;
    color: #000000;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 24px;
}

.story .element-3 {
    position: relative;
    align-self: stretch;
    width: 100%;
    aspect-ratio: 1.78;
}

.story .element-4 {
    display: inline-flex;
    flex-direction: column;
    /*align-items: flex-end;*/
    gap: 16px;
    padding: 0px 0px 160px 24px;
    position: relative;
    flex: 0 0 auto;
}

.story .timeline-item {
    position: relative;
    align-self: stretch;
    width: 74px;
    margin-top: -12.00px;
    margin-bottom: -12.00px;
}

.story .element-5 {
    display: inline-flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 16px;
    padding: 0px 0px 160px 24px;
    position: relative;
    flex: 0 0 auto;
}

.story .div-subheader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--light-beige);
    background: #ede9e5;
    border-radius: 12px;
}

/* Date badges should be only as wide as their text */
.story .story__date {
    display: inline-flex;
    width: fit-content;
    max-width: max-content;
    white-space: nowrap;
}

/* Left story column: align badge to the right edge */
.story .card-panel.story__column:first-child .story__date {
    align-self: flex-end;
}

/* Right story column: align badge to the left edge */
.story .card-panel.story__column:last-child .story__date {
    align-self: flex-start;
}

.story .element-6 {
    display: inline-flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 16px;
    padding: 0px 0px 0px 24px;
    position: relative;
    flex: 0 0 auto;
}

/* =========================
   LEADERSHIP ITEMS
   ========================= */

.crew {
    display: flex;
    flex-direction: column;
    width: 1044px;
    align-items: flex-start;
    gap: 24px;
    padding: 56px 0px;
    position: relative;
}

.crew .title {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.crew .icon-element {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.crew .icon-div {
    position: relative;
    width: 22.22px;
    height: 20px;
}

.crew .vector {
    top: 11.11%;
    left: 35.00%;
    position: absolute;
    width: 65.00%;
    height: 88.89%;
}

.crew .img {
    top: 0;
    left: 0;
    position: absolute;
    width: 65.00%;
    height: 88.89%;
}

.crew .title-txt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.crew .leadership {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: -1.00px;
    font-weight: 700;
    color: var(--black);
    font-size: 32px;
    letter-spacing: -0.96px;
    line-height: 32px;
    white-space: nowrap;
}

.crew .timeline {
    flex-direction: column;
    height: 522px;
    justify-content: flex-end;
    gap: 24px;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.crew .element-2 {
    gap: 74px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.crew .element-3 {
    display: flex;
    width: 485px;
    align-items: flex-end;
    gap: 24px;
    padding: 0px 0px 24px;
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #00000033;
}

.crew .element-4 {
    position: relative;
    width: 170px;
    height: 225px;
}

.crew .element-5 {
    display: flex;
    flex-direction: column;
    width: 291px;
    height: 225px;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 27px 16px 0px;
    position: relative;
}

.crew .element-6 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.crew .subheader-text-wrapper {
    position: relative;
    width: 170px;
    margin-top: -1.00px;
    font-weight: 700;
    color: #000000;
    font-size: 22px;
    letter-spacing: 0.22px;
    line-height: 24px;
}

.crew .leader-role-title {
    position: relative;
    width: 169px;
    font-weight: 600;
    color: #9f9388;
    font-size: 13px;
    letter-spacing: 0.13px;
    line-height: 24px;
}

.crew .p {
    position: relative;
    align-self: stretch;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: 20px;
}

.crew .card-text {
    position: relative;
    align-self: stretch;
    margin-bottom: -10.00px;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: 20px;
}

/* Keep leadership card media/content from colliding while resizing */
.crew__card {
    display: flex;
}

.crew__photo {
    width: 170px;
    height: 225px;
    flex: 0 0 170px;
    object-fit: cover;
    max-width: 100%;
}

.crew__content {
    flex: 1 1 auto;
    min-width: 0;
}

.crew__bio {
    overflow-wrap: anywhere;
}

/*------------------------------------------------
# Footer
------------------------------------------------*/
.site-footer {
    padding: 24px 0;
}

.footer-box {
    background: #1B1E20;
    border-radius: 20px;
    padding: 50px 50px 24px 50px;
}

.footer-box__inner {
    display: flex;
    align-items: flex-start;
    gap: 180px;
}

.footer-brand {
    flex: 0 0 auto;
    max-width: 320px;
}

.footer-brand__logo {
    display: block;
    height: 40px;
    width: auto;
    margin-bottom: 28px;
}

.footer-brand__kicker {
    font-size: 14px;
    line-height: 1.4;
    color: #979494;
    margin: 0 0 10px 0;
    font-weight: 300;
}

.footer-brand__kicker--spaced {
    margin-top: 26px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    transition: color 150ms ease;
}

.footer-cta__icon {
    width: 20px;
    height: 20px;
    transition: transform 150ms ease;
}

.footer-cta:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta:hover .footer-cta__icon {
    transform: translateX(4px);
}

.footer-links {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-links__title {
    margin: 0 0 16px 0;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links ul li>a {
    color: #979494;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 150ms ease;
}

.footer-links ul li>a:hover {
    color: var(--mg-color);
}

.footer-follow {
    display: none;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social__link {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    transition: transform 150ms ease, color 150ms ease;
}

.footer-social__link:hover {
    color: var(--mg-color);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {

    .footer-box {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .footer-box__inner {
        display: grid;
        grid-template-areas:
            "logo"
            "links"
            "social";
        gap: 32px;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        display: contents;
    }

    .footer-brand__logo {
        grid-area: logo;
        margin-bottom: 0;
    }

    .footer-links {
        grid-area: links;
    }

    .footer-brand__kicker,
    .footer-social {
        grid-area: social;
    }

    .footer-cta,
    .footer-brand__kicker--spaced {
        display: none;
    }

    .footer-social {
        justify-content: center;
        margin-top: 24px;
    }

    .footer-social__link {
        font-size: 22px;
    }
}

/* MOBILE FIRST OVERRIDES FOR CONTENT*/

/* Let containers control width; your blocks must be fluid */
.content .about,
.story,
.crew {
    width: 100%;
    max-width: 100%;
}

/* About layout: spacing between columns */
.content .about {
    gap: 0;
}

@media (max-width: 575px) {
    .content .about {
        flex-direction: column;
    }
}

@media (min-width: 576px) {
    .content .about {
        flex-direction: row;
    }
}


/* Remove fixed column widths */
.about .title,
.about .content-box,
.about .bottom-wrapper {
    width: 100%;
    max-width: 100%;
}

/* Long text must be allowed to wrap */
.about .about-us__title,
.story .our-story,
.crew .leadership {
    white-space: normal;
}

/* Desktop enhancement */
@media (min-width: 992px) {
    .content .about {
        flex-direction: row;
        gap: 0;
    }

    .about .title {
        width: 364px;
        flex: 0 0 364px;
    }

    .about .content-box {
        width: auto;
        flex: 1 1 auto;
    }

    .about .bottom-wrapper {
        width: auto;
        flex: 1 1 auto;
    }
}

/* ======================================================
   MOBILE ONLY FIX (keeps desktop intact)
   ====================================================== */

@media (max-width: 991px) {

    /* ---------- STORY (mobile) ---------- */

    .story {
        width: 100%;
        max-width: 100%;
    }

    /* stack timeline/cards vertically */
    .story .cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* ======================================================
   STORY MOBILE FIX | Timeline on LEFT
   ====================================================== */

    @media (max-width: 991px) {

        .story .cards {
            display: grid !important;
            grid-template-columns: 40px 1fr;
            column-gap: 16px;
            row-gap: 24px;
            align-items: start;
        }

        /* timeline column */
        .story .timeline-item {
            display: block !important;
            grid-column: 1;
            grid-row: 1 / -1;
            /* stretch through all rows */
            align-self: stretch;
            justify-self: center;
            width: 40px;
        }

        .story .timeline-item img,
        .story .timeline-item {
            width: 40px;
            height: auto;
        }

        /* ALL content blocks go right */
        .story .card-panel,
        .story .element-2,
        .story .element-4,
        .story .element-5,
        .story .element-6 {
            grid-column: 2 !important;
            width: 100% !important;
            padding: 0 !important;
        }

        .story .list-item {
            width: 100% !important;
        }

        /* allow wrapping */
        .story .subheader-text-wrapper,
        .story .card-title,
        .story .card-text {
            white-space: normal !important;
        }
    }


    /* kill huge desktop paddings that push content down */
    .story .element-2,
    .story .element-4,
    .story .element-5,
    .story .element-6 {
        padding: 0 !important;
        width: 100% !important;
    }

    /* cards must be fluid, not fixed 461px */
    .story .list-item {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* allow wrapping */
    .story .subheader-text-wrapper,
    .story .card-title,
    .story .card-text {
        white-space: normal !important;
    }

    /* images responsive */
    .story img,
    .story .element-3 {
        max-width: 100%;
        height: auto;
    }


    /* ---------- CREW (mobile) ---------- */

    .crew {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* allow title wrapping */
    .crew .leadership {
        white-space: normal !important;
        line-height: 1.2;
    }

    /* remove fixed heights that cause overlap */
    .crew .timeline,
    .crew .element-4,
    .crew .element-5 {
        height: auto !important;
    }

    /* stack people entries */
    .crew .element-2 {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px;
    }

    .crew .element-3 {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px;
    }

    /* image responsive */
    .crew .element-4 {
        width: 100% !important;
        max-width: 360px;
    }

    /* text block full width */
    .crew .element-5 {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* ======================================================
   STORY MOBILE timeline: CSS line + dot.svg (desktop untouched)
   ====================================================== */
@media (max-width: 991px) {

    /* On mobile: stack everything (not the 3-column desktop layout) */
    .story .cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    /* Hide the desktop middle timeline image on mobile */
    .story .timeline-item {
        display: none !important;
    }

    /* Each story entry becomes a 2-column grid:
     [timeline column] [content column] */
    .story .element-2,
    .story .element-4,
    .story .element-5,
    .story .element-6 {
        display: grid !important;
        grid-template-columns: 24px 1fr;
        column-gap: 16px;
        row-gap: 12px;
        width: 100% !important;
        padding: 0 !important;
        position: relative;
    }

    /* The vertical line: draw it per item so it always matches content height */
    .story .element-2::before,
    .story .element-4::before,
    .story .element-5::before,
    .story .element-6::before {
        content: "";
        position: absolute;
        left: 11px;
        /* center of 24px column (24/2 - 1px) */
        top: 0;
        bottom: 0;
        width: 2px;
        background: #00000033;
    }

    /* Stop the line after the last item (no line continuing below) */
    .story .element-6::before {
        bottom: 50%;
    }

    /* Dot is in column 1 and centered */
    .story .story-dot {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        align-self: start;
        width: 16px;
        height: 16px;
        z-index: 1;
        /* above the line */
        margin-top: 4px;
    }

    .story .story-dot img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Everything else goes in column 2 */
    .story .bgr,
    .story .div-subheader,
    .story .list-item {
        grid-column: 2;
    }

    /* Cards fluid */
    .story .list-item {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Let text wrap */
    .story .subheader-text-wrapper,
    .story .card-title,
    .story .card-text {
        white-space: normal !important;
    }
}

/* Desktop: hide mobile dots */
.story .story-dot {
    display: none;
}

@media (max-width: 991px) {
    .story .story-dot {
        display: block;
    }
}

/*Increased size buttons for timeline mobile version*/
@media (max-width: 991px) {

    .story .story-dot {
        display: block;
        grid-column: 1;
        justify-self: center;
        align-self: start;

        width: 42px;
        /* bigger */
        height: 42px;
        z-index: 2;
        margin-top: 2px;
    }

    .story .story-dot img {
        width: 100%;
        height: 100%;
        display: block;
    }

    /* Adjust line center because dot is bigger now */
    .story .element-2::before,
    .story .element-4::before,
    .story .element-5::before,
    .story .element-6::before {
        left: 12px;
        /* center of 24px column */
        width: 2px;
    }

}



/* =========================
   CONTACT FORM PAGE
   ========================= */

.contact-section .col-md-12,.col-md-6 {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 26px);
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-items: start;
}

.contact-title {
    display: flex;
    align-items: center;
    align-self: start;
    gap: 10px;
    margin-left: 0;
}

.contact-title-icon {
    width: 22px;
    height: 20px;
    flex: 0 0 auto;
}

.contact-title h1 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 32px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.6px;
    white-space: nowrap;
}

.contact-form {
    width: 656px;
    max-width: 100%;
    margin: 0;
    align-self: start;
}

.contact-field {
    margin-bottom: 22px;
}

.contact-field label,
.contact-services legend {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.2;
    font-weight: 500;
    color: #111111;
}

.contact-field label span,
.contact-services legend span {
    color: #D13B2E;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: #E4E1DE;
    color: #111111;
    font-size: clamp(14px, 1.25vw, 16px);
    padding: 14px 16px;
    outline: none;
}

.contact-field textarea {
    resize: vertical;
    min-height: 88px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8A857F;
}

.contact-services {
    margin: 8px 0 22px;
    border: 0;
    padding: 0;
}

.contact-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.3;
    color: #111111;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: #9E968D;
    flex: 0 0 auto;
}

.contact-submit {
    width: 200px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 30px;
    white-space: nowrap;
    font-size: clamp(15px, 1.2vw, 15px);
    font-weight: 600;
    color: #ffffff;
    background: #50B848;
    transition: 0.2s ease;
}

.contact-submit:hover {
    filter: brightness(0.95);
}

/* =========================
   CONTACT PAGE (MAP + REPRESENTATIVES)
   ========================= */

.contact-page {
    padding: 18px 6px 56px;
}

.contact-map-section {
    margin-bottom: 84px;
}

.contact-map-title,
.contact-representatives-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
}

.contact-map-title {
    margin-bottom: 20px;
}

.contact-map-title img,
.contact-representatives-title img {
    width: 22px;
    height: 20px;
    margin-top: 4px;
    flex: 0 0 auto;
}

.contact-map-title h1,
.contact-representatives-title h2 {
    margin: 0;
    font-size: clamp(26px, 3.3vw, 32px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #111111;
}

.contact-map-layout {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.country-card {
    background: #dfdbd8;
    border-radius: 12px;
    padding: 18px 14px 14px;
    max-width: 340px;
}

.country-cards {
    width: 100%;
    position: relative;
}

@media (min-width: 992px) {
    .country-cards {
        margin-top: 0;
        top: 88px;
    }
}

.country-card--hidden {
    display: none;
}

.country-card h2 {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #111111;
}

.country-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #50B848;
    flex: 0 0 auto;
}

.country-dot--blue {
    background: #16ACE3;
}

.country-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.country-card li {
    display: block;
    font-size: 12px;
    line-height: 1.45;
}

.location-item {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    /*minmax(96px, 43%) minmax(0, 57%);*/
    gap: 4px;
    text-align: left;
    color: #8e867d;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding: 1px 0;
    white-space: normal;
}

.location-item span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.location-item span:first-child {
    font-weight: 600;
}

.location-item span:last-child {
    font-weight: 500;
}

.country-alt-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.country-alt-list li {
    display: grid;
    gap: 3px;
}

.country-alt-country {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.country-alt-detail {
    margin: 0;
    color: #8e867d;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 700;
}

.country-alt-sep {
    color: #d99595;
}

.contact-map-visual {
    width: 100%;
    justify-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    /*margin-left: 60px;*/
    align-self: start;
}

@media (min-width: 992px) {
    .contact-map-visual {
        margin-left: 20px;
        margin-top: -8px;
    }
}

.contact-map-svg,
.contact-map-visual img {
    width: min(100%, 650px);
    display: block;
    border: 0;
    /* Compensates top whitespace inside map.svg so visual top aligns with country card */
    margin-top: -24px;
}

.contact-map-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

.contact-map-status {
    margin: 10px 0 0;
    font-size: 14px;
    color: #6d665f;
}

.contact-map-legend {
    margin-top: 18px;
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    padding-left: 16px;
    font-size: 17px;
    color: #111111;
}

.contact-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot--green {
    background: #50B848;
}

.legend-dot--blue {
    background: #16ACE3;
}

.contact-representatives-section {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.contact-representatives-title {
    max-width: 320px;
    overflow-wrap: anywhere;
}

.contact-representatives-title h2 {
    font-size: clamp(20px, 2.9vw, 24px);
    font-weight: 700;
}

.contact-representatives-list {
    display: grid;
    gap: 28px;
}

.representative-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.representative-content {
    padding-bottom: 10px;
    border-bottom: 1px solid #111111;
}

.representative-content> :last-child {
    margin-bottom: 0;
}

.representative-photo {
    width: 170px;
    height: 225px;
    object-fit: cover;
    border-bottom: 4px solid #50B848;
}

.representative-content h3 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    color: #111111;
}

.representative-role {
    margin: 8px 0 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #9f9388;
}

.representative-label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #50B848;
}

.representative-value {
    margin: 2px 0 18px;
    font-size: 22px;
    line-height: 1.1;
    color: #111111;
    overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .contact-title {
        width: 100%;
        margin-left: 0;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .contact-map-visual {
        align-items: flex-start;
        margin-left: 0;
    }

    .contact-map-svg,
    .contact-map-visual img {
        margin-top: 0;
    }

    .country-cards {
        top: 0;
    }

    .contact-representatives-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .contact-page {
        padding: 14px 10px 46px;
    }

    .contact-map-section {
        margin-bottom: 56px;
    }

    .contact-map-visual {
        order: -1;
        align-items: flex-start;
        margin-top: 0;
    }

    .contact-map-svg,
    .contact-map-visual img {
        margin-top: 0;
    }

    .contact-map-legend {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .country-card {
        width: 100%;
        max-width: 100%;
    }

    .country-cards {
        display: grid;
        gap: 12px;
    }

    .country-card--hidden {
        display: block;
    }

    .country-card li {
        display: block;
    }

    .location-item {
        grid-template-columns: minmax(96px, 43%) minmax(0, 57%);
        gap: 8px;
    }

    .representative-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .representative-photo {
        width: min(100%, 280px);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .representative-content h3 {
        font-size: clamp(22px, 8vw, 22px);
    }

    .representative-role {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .representative-label {
        font-size: 14px;
    }

    .representative-value {
        font-size: clamp(22px, 8vw, 22px);
    }

    .contact-section {
        padding: 20px 16px 56px;
    }

    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .contact-title {
        width: 100%;
        margin-left: 0;
    }

    .contact-form {
        width: 100%;
    }

    .contact-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 16px 14px 44px;
    }
}

/* =========================
   INTRODUCTION MOBILE FIXES
   ========================= */
@media (max-width: 576px) {
    .submenu-wrap {
        top: 72px;
        padding: 10px 12px 0;
    }

    .submenu {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .crew__card {
        align-items: flex-start !important;
    }

    .crew .subheader-text-wrapper,
    .crew .leader-role-title {
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .crew__card {
        flex-direction: column;
        gap: 12px !important;
    }

    .crew__photo {
        width: min(100%, 220px);
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    .crew__content {
        width: 100%;
    }
}




/* Offset in-page anchors for sticky header + submenu */
#about-us,
#story,
#crew {
    scroll-margin-top: 180px;
}

/* ======================================================
   STORY TIMELINE MOBILE PATCH
   Keeps line continuous and dots centered over it
   ====================================================== */
@media (max-width: 991px) {
    .story .cards {
        position: relative;
    }

    .story .cards::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 23px;
        bottom: 21px;
        width: 2px;
        background: #00000033;
        z-index: 0;
    }

    .story .element-2::before,
    .story .element-4::before,
    .story .element-5::before,
    .story .element-6::before {
        content: none;
    }

    .story .story-dot {
        position: relative;
        z-index: 2;
    }

    .story .element-6 {
        position: relative;
        padding-bottom: 24px !important;
    }

    .story .element-6::after {
        content: "";
        position: absolute;
        left: 12px;
        bottom: 0;
        width: 42px;
        height: 42px;
        background-image: url("../img/dot.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transform: translateX(-50%);
        z-index: 2;
    }

    /* Keep vertical gap between stacked story items in mobile.
       element-2 stays flush at the top; later items get top spacing. */
    .story .element-4,
    .story .element-5,
    .story .element-6 {
        padding-top: 20px !important;
    }
}


/* =========================
   NEWS PAGE
   ========================= */

.news-page {
    padding: 12px 12px 56px;
}

.news-section {
    width: 100%;
}

.news-section__title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
}

.news-section__title-icon {
    width: 22px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 4px;
}

.news-section__title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    color: #111111;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 24px;
}

.news-card {
    display: grid;
    grid-template-columns: 47% 1fr;
    min-height: 248px;
    background: #EDE9E5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.news-card__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #111111;
}

.news-card__date {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #50B848;
}

.news-card__excerpt {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.35;
    color: #5F5B56;
}

.news-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.news-card__icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url("../img/cta_arrow.svg") center / contain no-repeat;
}

.news-card__image {
    transition: transform 0.4s ease;
}

.news-card:hover .news-card__image {
    transform: scale(1.05);
}

.news-card__icon {
    transition: transform 0.25s ease;
}

.news-card:hover .news-card__icon {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .news-section__title {
        font-size: 26px;
    }

    .news-card__title {
        font-size: 20px;
    }

    .news-card__date {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        min-height: 0;
        grid-template-columns: 42% 1fr;
    }

    .news-card__title {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .news-page {
        padding: 10px 10px 40px;
    }

    .news-section__title {
        font-size: 28px;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-card__image {
        aspect-ratio: 16 / 10;
        height: auto;
    }
}

/* =========================
   SERVICES PAGE
   ========================= */


/*------------------------------------------------
# Scroll to top
------------------------------------------------*/

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(45px);
    transition: all 300ms linear;
    color: var(--mg-color);
}

.scroll-top svg {
    color: var(--mg-color);
    border-radius: 50%;
    background: transparent;
}

.scroll-top .progress-circle path {
    box-sizing: border-box;
    transition: all 400ms linear;
    stroke: var(--mg-color);
    stroke-width: 6px;
}


.scroll-top:after {
    content: "\f062";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--mg-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}