:root {
    --blue: #3780ff;
    --blue-dark: #246be5;
    --blue-soft: #edf4ff;
    --black: #111111;
    --white: #ffffff;
    --off-white: #f8fafc;
    --grey: #667085;
    --grey-dark: #344054;
    --light-grey: #e4e7ec;
    --max-width: 1240px;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    background: var(--white);
    color: var(--black);
    font-family: Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(calc(100% - 96px), var(--max-width)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(228,231,236,.85);
    backdrop-filter: blur(14px);
}
.header-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo { display: block; width: 220px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav > a,
.nav-dropdown-button {
    color: var(--grey-dark);
    font-size: 15px;
    font-weight: 600;
}
.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown-button:hover,
.nav-dropdown-button:focus-visible,
.nav-dropdown.open .nav-dropdown-button { color: var(--blue); }
.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 4px;
    background: var(--blue);
    color: var(--white) !important;
}
.header-cta:hover { background: var(--blue-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}
.nav-chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -24px;
    width: 250px;
    padding: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background: rgba(255,255,255,.99);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 19px;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.nav-dropdown-menu a {
    display: block;
    padding: 12px 13px;
    border-radius: 5px;
    color: var(--grey-dark);
    font-size: 14px;
    font-weight: 650;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--blue-soft);
    color: var(--blue);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
}
.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--black);
}
.mobile-nav { display: none; }

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 92px 0 112px;
    background:
        radial-gradient(circle at 88% 18%, rgba(55,128,255,.11), transparent 28%),
        linear-gradient(180deg,#fff 0%,#fbfcfe 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.eyebrow,
.section-label,
.service-kicker {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    font-size: 14px;
}
.eyebrow::before {
    content: "";
    width: 38px;
    height: 3px;
    background: var(--blue);
}
h1 {
    max-width: 980px;
    font-size: clamp(54px,7vw,98px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 650;
}
h1 span { color: var(--blue); }
h2 {
    font-size: clamp(38px,4.4vw,62px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 650;
}
h3 {
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -.025em;
}
.hero-copy,
.section-intro,
.page-copy {
    color: var(--grey);
    font-size: 18px;
    line-height: 1.75;
}
.hero-copy {
    max-width: 760px;
    margin-top: 36px;
    font-size: clamp(19px,1.7vw,23px);
}
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
}
.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); border-color: var(--blue); color: var(--white); }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-secondary { background: var(--white); border-color: var(--light-grey); color: var(--black); }
.button-secondary:hover { border-color: var(--black); }

.hero-graphic {
    position: absolute;
    right: -72px;
    bottom: -250px;
    width: 640px;
    height: 770px;
    pointer-events: none;
}
.hero-graphic span {
    position: absolute;
    display: block;
    width: 90px;
    transform: skewX(-29deg);
}
.graphic-soft { height: 610px; right: 294px; top: 100px; background: var(--blue-soft); }
.graphic-black { height: 585px; right: 176px; top: 0; background: var(--black); }
.graphic-blue { height: 510px; right: 66px; top: 190px; background: var(--blue); }

.section { padding: 112px 0; }
.section-alt { background: var(--off-white); }
.section-heading {
    display: grid;
    grid-template-columns: minmax(220px,.75fr) minmax(0,1.5fr);
    gap: 72px;
    align-items: start;
    margin-bottom: 64px;
}
.section-intro { max-width: 780px; margin-top: 24px; font-size: 19px; }

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 42px;
    background:
        radial-gradient(circle at 92% 10%, rgba(55,128,255,.08), transparent 24%),
        linear-gradient(180deg,#fff 0%,#fbfcfe 100%);
    border-bottom: 1px solid var(--light-grey);
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
}
.page-hero .eyebrow {
    margin-bottom: 18px;
}
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 4.6vw, 54px);
    line-height: 1.02;
    letter-spacing: -.045em;
}
.page-hero .page-copy {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.65;
}
.page-hero .hero-graphic {
    right: -315px;
    bottom: -455px;
    width: 520px;
    height: 560px;
    opacity: .18;
}
.page-grid {
    display: grid;
    grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr);
    gap: 80px;
    align-items: start;
}
.page-aside {
    padding: 32px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background: var(--white);
}
.page-aside ul { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.page-aside a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--light-grey);
    color: var(--grey-dark);
    font-size: 15px;
    font-weight: 650;
}
.page-aside a:hover { color: var(--blue); }
.content-block + .content-block { margin-top: 46px; }
.content-block p { margin-top: 18px; color: var(--grey); font-size: 17px; line-height: 1.75; }
.detail-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    list-style: none;
}
.detail-list li {
    position: relative;
    min-height: 78px;
    padding: 18px 18px 18px 44px;
    border: 1px solid var(--light-grey);
    border-radius: 6px;
    background: var(--white);
    color: var(--grey-dark);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
}
.detail-list li::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 25px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}
.card {
    padding: 32px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background: var(--white);
}
.card p { margin-top: 14px; color: var(--grey); font-size: 15px; line-height: 1.7; }

.contact-section { background: var(--black); color: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: start;
}
.contact-section .section-label { color: #82adff; }
.contact-section .section-intro { color: #c7ccd4; }
.contact-details { display: grid; gap: 18px; }
.contact-detail { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-detail span {
    display: block;
    margin-bottom: 7px;
    color: #98a2b3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.contact-detail p, .contact-detail a { color: var(--white); font-size: 16px; line-height: 1.6; }

.site-cta {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background: var(--off-white);
    border-top: 1px solid var(--light-grey);
}

.site-cta::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -120px;
    width: 76px;
    height: 320px;
    background: var(--blue-soft);
    transform: skewX(-29deg);
}

.site-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 48px;
    align-items: end;
}

.site-cta h2 {
    max-width: 760px;
}

.site-cta p {
    max-width: 720px;
    margin-top: 18px;
    color: var(--grey);
    font-size: 18px;
    line-height: 1.7;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #07111f;
    color: var(--white);
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -260px;
    width: 170px;
    height: 620px;
    background: rgba(55, 128, 255, 0.05);
    transform: skewX(-29deg);
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 76px 0 52px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
    gap: 52px;
    align-items: start;
}

.footer-map {
    width: 100%;
    max-width: 360px;
    height: 210px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: #ffffff;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 24px;
    color: #b8c0cc;
    font-size: 15px;
    line-height: 1.7;
}

.footer-heading {
    margin-bottom: 20px;
    color: #8eb3ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 12px;
    list-style: none;
}

.footer-links a {
    color: #f2f4f7;
    font-size: 14px;
    line-height: 1.5;
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--blue);
}

.footer-company {
    display: grid;
    gap: 18px;
}

.footer-company-block span {
    display: block;
    margin-bottom: 6px;
    color: #7f8a99;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-company-block p,
.footer-company-block a {
    color: #f2f4f7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-company-block a:hover {
    color: var(--blue);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-bottom-copy,
.footer-bottom-positioning {
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom-positioning {
    color: #d0d5dd;
    text-align: right;
}

.footer-bottom-positioning span {
    padding: 0 7px;
    color: var(--blue);
}

@media (max-width: 980px) {
    .container { width: min(calc(100% - 52px),var(--max-width)); }
    .desktop-nav { display: none; }
    .menu-button { display: block; }
    .mobile-nav {
        position: fixed;
        top: 100px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 95;
        height: calc(100vh - 100px);
        height: calc(100dvh - 100px);
        padding: 28px 26px calc(36px + env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: rgba(255,255,255,.99);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav-group { padding-bottom: 8px; border-bottom: 1px solid var(--light-grey); }
    .mobile-nav-heading {
        display: block;
        padding: 12px 0 6px;
        color: var(--blue);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .11em;
        text-transform: uppercase;
    }
    .mobile-nav a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--light-grey);
        color: var(--grey-dark);
        font-size: 17px;
        font-weight: 700;
    }
    .mobile-nav-group a { padding: 12px 0 12px 16px; border-bottom: 0; font-size: 15px; }
    .hero { min-height: auto; padding: 95px 0 130px; }
    .hero-graphic { right: -300px; bottom: -330px; opacity: .42; }
    .section-heading,.page-grid,.contact-grid { grid-template-columns: 1fr; gap: 38px; }
    .cards { grid-template-columns: 1fr; }

    .site-cta-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 640px) {
    .container { width: min(calc(100% - 36px),var(--max-width)); }
    .header-inner { min-height: 58px; }
    .logo { width: 170px; }
    .mobile-nav {
        top: 100px;
        height: calc(100vh - 100px);
        height: calc(100dvh - 100px);
    }
    .hero { padding: 72px 0 100px; }
    .page-hero { padding: 42px 0 34px; }
    h1 { font-size: clamp(48px,14vw,70px); }
    .actions { flex-direction: column; align-items: stretch; max-width: 380px; }
    .button { width: 100%; }
    .hero-graphic { right: -430px; bottom: -360px; opacity: .2; }
    .section { padding: 82px 0; }
    .detail-list { grid-template-columns: 1fr; }
    .site-cta {
        padding: 68px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-map {
        max-width: none;
        height: 220px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 24px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-positioning {
        text-align: left;
    }
}


/* Reusable Advantis One page components */
.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content .eyebrow,
.page-header-content h1,
.page-header-content .page-copy {
    margin-left: 0;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-main > :first-child {
    margin-top: 0;
}

@media (max-width: 980px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}



/* Leadership profile */
.leadership-profile-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center;
}

.leadership-photo {
    display: block;
    width: 207px;
    height: 179px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.leadership-profile-heading h2 {
    margin: 0;
}

.leadership-role {
    margin-top: 8px;
    color: var(--grey-dark);
    font-size: 18px;
    line-height: 1.5;
}

.leadership-profile-heading > p:last-child {
    margin-top: 20px;
    color: var(--grey);
    font-size: 17px;
    line-height: 1.75;
}

.leadership-biography {
    margin-top: 38px;
}

@media (max-width: 640px) {
    .leadership-profile-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leadership-photo {
        width: 207px;
        height: 179px;
    }
}


/* ============================================================
   ADVANTIS ONE MASTER WEBSITE
   MOUNTAIN BACKGROUND THEME
   Retains the approved master structure, typography and layout.
   ============================================================ */

/* Homepage hero */
.mountain-theme-home .hero {
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.98) 34%,
            rgba(255,255,255,.82) 50%,
            rgba(255,255,255,.28) 68%,
            rgba(255,255,255,.05) 100%
        ),
        url("mountain-background.jpg") center right / cover no-repeat;
}

.mountain-theme-home .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            112deg,
            transparent 0 57%,
            rgba(55,128,255,.58) 57.08% 57.22%,
            transparent 57.3% 64%,
            rgba(255,255,255,.74) 64.08% 64.2%,
            transparent 64.28%
        );
}

.mountain-theme-home .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            112deg,
            rgba(255,255,255,.16) 0 48%,
            rgba(255,255,255,0) 48.1%
        );
}

.mountain-theme-home .hero-content {
    z-index: 2;
    max-width: 760px;
}

.mountain-theme-home .hero-graphic {
    display: none;
}

/* Secondary-page mountain treatment */
.page-hero {
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.98) 52%,
            rgba(255,255,255,.70) 72%,
            rgba(255,255,255,.20) 100%
        ),
        url("mountain-background.jpg") center 43% / cover no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            112deg,
            transparent 0 71%,
            rgba(55,128,255,.40) 71.08% 71.18%,
            transparent 71.26%
        );
}

.page-hero .container,
.page-hero .page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero .hero-graphic {
    display: none;
}

/* Responsive refinements */
@media (max-width: 980px) {
    .mountain-theme-home .hero {
        background-position: 62% center;
    }

    .mountain-theme-home .hero::before,
    .mountain-theme-home .hero::after {
        opacity: .55;
    }

    .page-hero {
        background-position: 64% center;
    }
}

@media (max-width: 640px) {
    .mountain-theme-home .hero {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,.96) 54%,
                rgba(255,255,255,.62) 76%,
                rgba(255,255,255,.20) 100%
            ),
            url("mountain-background.jpg") center bottom / cover no-repeat;
    }

    .mountain-theme-home .hero::before {
        opacity: .28;
    }

    .mountain-theme-home .hero::after {
        display: none;
    }

    .page-hero {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,.90) 68%,
                rgba(255,255,255,.45) 100%
            ),
            url("mountain-background.jpg") center bottom / cover no-repeat;
    }
}


/* Compact global navigation */
.header-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.header-inner > a {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.header-inner .logo {
    max-height: 68px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .header-inner .logo {
        max-height: 58px;
    }
}




/* Footer column alignment refinement */
.footer-grid {
    align-items: start;
}

.footer-links,
.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-links .footer-heading,
.footer-company .footer-heading {
    margin: 0 0 22px 0;
    line-height: 1;
}

.footer-links ul,
.footer-company .footer-company-block:first-of-type {
    margin-top: 0;
}

.footer-company {
    gap: 0;
}

.footer-company .footer-company-block + .footer-company-block {
    margin-top: 24px;
}


/* iPhone mobile-navigation viewport fix */
@media (max-width: 980px) {
    .site-header {
        position: relative;
        z-index: 100;
    }

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

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

@supports (-webkit-touch-callout: none) {
    @media (max-width: 980px) {
        .mobile-nav {
            padding-bottom: calc(44px + env(safe-area-inset-bottom));
        }
    }
}

/* Robust iPhone and mobile navigation behaviour */
@media (max-width: 980px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .mobile-nav {
        position: fixed;
        top: var(--mobile-nav-top, 100px);
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: var(--mobile-nav-height, calc(100dvh - 100px));
        max-height: var(--mobile-nav-height, calc(100dvh - 100px));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(44px + env(safe-area-inset-bottom));
    }

    body.menu-open {
        position: fixed;
        right: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        touch-action: none;
    }

    .menu-button.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .menu-button span {
        transition: transform 180ms ease, opacity 180ms ease;
    }
}

/* Holding page layout, using existing site components only */
.holding-page .header-inner {
    justify-content: flex-start;
}

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

.holding-page .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.75fr);
}

@media (max-width: 900px) {
    .holding-page .footer-grid {
        grid-template-columns: 1fr;
    }
}
