:root {
    --home-blue: #0A2A35;
    --home-dark: #061C24;
    --home-mid: #103B47;
    --home-aqua: #3CB3B0;
    --home-aqua-soft: #DDF6F4;
    --home-white: #FFFFFF;
    --home-ink: #142D35;
    --home-text: #425A61;
    --home-muted: #71868B;
    --home-light: #F4F9F9;
    --home-border: #D9E7E7;
    --home-radius-sm: 14px;
    --home-radius: 22px;
    --home-radius-lg: 32px;
    --home-shadow: 0 18px 50px rgba(10, 42, 53, 0.11);
    --home-shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.24);
    --home-transition: 220ms ease;
}

.home-page {
    margin: 0;
    background: var(--home-white);
    color: var(--home-ink);
    font-family: "Raleway", Arial, sans-serif;
    line-height: 1.65;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page a { color: inherit; }
.home-page img { display: block; max-width: 100%; }
.home-page h1,
.home-page h2,
.home-page h3,
.home-page p { margin-top: 0; }

.home-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.home-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--home-white);
    color: var(--home-blue);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--home-transition);
}

.home-skip-link:focus { transform: translateY(0); }

.home-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(6, 28, 36, .48);
    backdrop-filter: blur(18px);
    transition: background var(--home-transition), box-shadow var(--home-transition);
}

.home-header.is-scrolled {
    background: rgba(6, 28, 36, .94);
    box-shadow: 0 12px 35px rgba(0,0,0,.16);
}

.home-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.home-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--home-white);
    text-decoration: none;
}

.home-brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--home-aqua);
    color: var(--home-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.home-brand-copy { display: grid; line-height: 1.05; }
.home-brand-copy strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1.03rem;
    letter-spacing: .02em;
}
.home-brand-copy small {
    margin-top: 4px;
    color: rgba(255,255,255,.68);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.home-nav a {
    position: relative;
    color: rgba(255,255,255,.76);
    font-family: "Montserrat", sans-serif;
    font-size: .83rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--home-transition);
}

.home-nav a:hover,
.home-nav a:focus-visible,
.home-nav a.is-current { color: var(--home-white); }

.home-nav a:not(.home-nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--home-aqua);
    transition: width var(--home-transition);
}

.home-nav a:hover::after,
.home-nav a.is-current::after { width: 100%; }

.home-nav .home-nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--home-aqua);
    color: var(--home-blue);
    font-weight: 700;
}

.home-nav .home-nav-cta:hover { background: var(--home-white); color: var(--home-blue); }

.home-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

.home-nav-toggle > span:not(.home-sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 4px;
    background: var(--home-white);
    transition: transform var(--home-transition), opacity var(--home-transition);
}

.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 820px;
    overflow: hidden;
    padding: 160px 0 0;
    background: linear-gradient(135deg, var(--home-dark), var(--home-blue) 58%, #0C3540);
    color: var(--home-white);
    isolation: isolate;
}

.home-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .13;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 94%);
}

.home-hero-orb {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(12px);
}

.home-hero-orb-one {
    width: min(52vw, 740px);
    aspect-ratio: 1;
    top: -34%;
    right: -15%;
    background: radial-gradient(circle, rgba(60,179,176,.36), transparent 68%);
}

.home-hero-orb-two {
    width: min(44vw, 610px);
    aspect-ratio: 1;
    bottom: -42%;
    left: -15%;
    background: radial-gradient(circle, rgba(60,179,176,.18), transparent 68%);
}

.home-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    align-items: center;
    gap: clamp(50px, 7vw, 90px);
    padding-bottom: 80px;
}

.home-eyebrow,
.home-section-kicker {
    margin-bottom: 18px;
    color: var(--home-aqua);
    font-family: "Montserrat", sans-serif;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    color: var(--home-white);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.7rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .94;
}

.home-hero h1 span { display: block; color: var(--home-aqua); }

.home-hero-lead {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255,255,255,.75);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.8;
}

.home-hero-actions,
.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.home-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--home-transition), background var(--home-transition), border-color var(--home-transition), color var(--home-transition), box-shadow var(--home-transition);
}

.home-button:hover,
.home-button:focus-visible { transform: translateY(-3px); }
.home-button:focus-visible,
.home-page a:focus-visible,
.home-page button:focus-visible { outline: 3px solid var(--home-aqua); outline-offset: 4px; }

.home-button-primary {
    background: var(--home-aqua);
    color: var(--home-blue);
    box-shadow: 0 14px 35px rgba(60,179,176,.22);
}
.home-button-primary:hover { background: var(--home-white); color: var(--home-blue); }

.home-button-secondary {
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.04);
    color: var(--home-white);
}
.home-button-secondary:hover { border-color: var(--home-aqua); background: rgba(60,179,176,.1); }

.home-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255,255,255,.68);
    font-size: .88rem;
    font-weight: 600;
}

.home-hero-points li { position: relative; padding-left: 18px; }
.home-hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--home-aqua);
}

.home-hero-visual {
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--home-radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
    box-shadow: var(--home-shadow-dark);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.home-browser-bar {
    min-height: 52px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.1);
}
.home-browser-dots { display: flex; gap: 6px; }
.home-browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); }
.home-browser-address {
    justify-self: center;
    color: rgba(255,255,255,.45);
    font-size: .69rem;
    letter-spacing: .05em;
}

.home-visual-content { padding: 30px; }
.home-visual-heading { display: grid; gap: 5px; margin-bottom: 25px; }
.home-visual-heading span { color: var(--home-aqua); font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home-visual-heading strong { font-family: "Montserrat", sans-serif; font-size: 1.28rem; }

.home-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.home-visual-card {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
}
.home-visual-card.featured { background: var(--home-aqua); color: var(--home-blue); }
.home-visual-icon { margin-bottom: auto; font-family: "Montserrat", sans-serif; font-size: .66rem; font-weight: 800; opacity: .65; }
.home-visual-card strong { font-family: "Montserrat", sans-serif; font-size: 1rem; }
.home-visual-card small { margin-top: 4px; color: inherit; opacity: .65; font-size: .72rem; }

.home-visual-progress { margin-top: 20px; padding: 18px; border-radius: 18px; background: rgba(0,0,0,.12); }
.home-visual-progress > div:first-child { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 12px; font-size: .75rem; }
.home-visual-progress strong { color: var(--home-aqua); }
.home-progress-track { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
.home-progress-track span { display: block; width: 86%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--home-aqua), var(--home-aqua-soft)); }

.home-trust-strip {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.62);
    font-size: .82rem;
}
.home-trust-strip > span { color: var(--home-aqua); font-family: "Montserrat", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.home-trust-strip strong { font-weight: 600; }

.home-section { padding: 110px 0; }
.home-section-heading { margin-bottom: 48px; }
.home-section-heading h2,
.home-approach-copy h2,
.home-about-copy h2,
.home-cta-card h2 {
    margin-bottom: 18px;
    color: var(--home-ink);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -.045em;
    line-height: 1.05;
}

.home-heading-split {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 470px);
    align-items: end;
    gap: 70px;
}
.home-heading-split > p,
.home-approach-copy > p,
.home-about-copy > p { color: var(--home-text); line-height: 1.8; }

.home-services-section { background: var(--home-light); }
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.home-service-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    background: var(--home-white);
    box-shadow: 0 12px 35px rgba(10,42,53,.05);
    transition: transform var(--home-transition), border-color var(--home-transition), box-shadow var(--home-transition);
}
.home-service-card:hover { transform: translateY(-7px); border-color: var(--home-aqua); box-shadow: var(--home-shadow); }
.home-service-card-featured { grid-column: span 2; color: var(--home-white); background: linear-gradient(135deg, var(--home-blue), var(--home-mid)); border-color: transparent; }
.home-service-card-featured p,
.home-service-card-featured li { color: rgba(255,255,255,.72); }
.home-service-topline { display: flex; justify-content: space-between; gap: 16px; }
.home-service-number { color: var(--home-aqua); font-family: "Montserrat", sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.home-service-tag { padding: 5px 9px; border-radius: 999px; background: rgba(60,179,176,.16); color: var(--home-aqua); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.home-service-card h3 { margin: 34px 0 14px; color: inherit; font-family: "Montserrat", sans-serif; font-size: 1.35rem; }
.home-service-card p { color: var(--home-text); }
.home-service-card ul { margin: 2px 0 24px; padding-left: 20px; color: var(--home-text); }
.home-service-card a { margin-top: auto; color: var(--home-blue); font-family: "Montserrat", sans-serif; font-size: .82rem; font-weight: 700; text-decoration: none; }
.home-service-card-featured a { color: var(--home-aqua); }
.home-service-card a:hover { text-decoration: underline; text-underline-offset: 5px; }

.home-approach-section { background: var(--home-white); }
.home-approach-layout { display: grid; grid-template-columns: minmax(300px, .8fr) 1.2fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.home-approach-copy { position: sticky; top: 125px; }
.home-text-link { display: inline-flex; gap: 8px; margin-top: 14px; color: var(--home-blue); font-family: "Montserrat", sans-serif; font-size: .85rem; font-weight: 700; text-decoration: none; }
.home-text-link:hover { color: var(--home-aqua); }
.home-process-list { border-top: 1px solid var(--home-border); }
.home-process-list article { display: grid; grid-template-columns: 72px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--home-border); }
.home-process-list article > span { color: var(--home-aqua); font-family: "Montserrat", sans-serif; font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.home-process-list h3 { margin-bottom: 8px; font-family: "Montserrat", sans-serif; font-size: 1.3rem; }
.home-process-list p { margin-bottom: 0; color: var(--home-text); }

.home-work-section { background: var(--home-blue); color: var(--home-white); }
.home-work-section .home-section-kicker { color: var(--home-aqua); }
.home-work-section .home-section-heading h2 { color: var(--home-white); }
.home-work-section .home-heading-split > p { color: rgba(255,255,255,.66); }
.home-work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.home-project-card { overflow: hidden; border-radius: var(--home-radius-lg); background: var(--home-white); color: var(--home-ink); box-shadow: var(--home-shadow-dark); transition: transform var(--home-transition); }
.home-project-card:hover { transform: translateY(-7px); }
.home-project-preview { min-height: 360px; padding: 26px; display: flex; flex-direction: column; }
.home-project-dark .home-project-preview { background: linear-gradient(145deg, #17202A, #273746); }
.home-project-light .home-project-preview { background: linear-gradient(145deg, #EAF4F4, #CFE8E7); }
.home-project-label { align-self: flex-start; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.13); color: var(--home-white); font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-project-light .home-project-label { background: rgba(10,42,53,.1); color: var(--home-blue); }
.home-project-screen { width: 88%; min-height: 210px; margin: auto; border-radius: 15px; background: var(--home-white); box-shadow: 0 20px 45px rgba(0,0,0,.2); overflow: hidden; transform: perspective(800px) rotateX(3deg) rotateY(-5deg); }
.home-project-screen-bar { height: 28px; background: #EDF3F3; border-bottom: 1px solid #DCE8E8; }
.home-project-screen-copy { min-height: 182px; display: grid; place-content: center; gap: 8px; padding: 25px; text-align: center; }
.home-project-screen-copy strong { color: var(--home-blue); font-family: "Montserrat", sans-serif; font-size: 1.45rem; }
.home-project-screen-copy span { color: var(--home-muted); font-size: .75rem; }
.home-project-copy { padding: 28px 30px 32px; }
.home-project-copy p { margin-bottom: 8px; color: var(--home-aqua); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-project-copy h3 { margin-bottom: 10px; font-family: "Montserrat", sans-serif; font-size: 1.5rem; }
.home-project-copy > span { color: var(--home-text); }

.home-about-section { background: var(--home-light); }
.home-about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 120px); align-items: center; }
.home-about-statements { display: grid; gap: 16px; }
.home-about-statements > div { padding: 24px; border: 1px solid var(--home-border); border-radius: 18px; background: var(--home-white); box-shadow: 0 10px 28px rgba(10,42,53,.05); }
.home-about-statements strong { display: block; margin-bottom: 4px; color: var(--home-blue); font-family: "Montserrat", sans-serif; font-size: 1.1rem; }
.home-about-statements span { color: var(--home-text); font-size: .9rem; }

.home-testimonial-section { padding: 85px 0; background: var(--home-aqua); }
.home-testimonial { max-width: 930px; margin: 0 auto; text-align: center; }
.home-testimonial blockquote { margin: 0 0 22px; color: var(--home-blue); font-family: "Montserrat", sans-serif; font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.2; }
.home-testimonial figcaption { color: rgba(10,42,53,.72); font-weight: 700; }

.home-cta-section { padding: 90px 0; background: var(--home-white); }
.home-cta-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: clamp(38px, 6vw, 70px); border-radius: var(--home-radius-lg); background: linear-gradient(135deg, var(--home-dark), var(--home-blue)); color: var(--home-white); box-shadow: var(--home-shadow-dark); }
.home-cta-card h2 { color: var(--home-white); }
.home-cta-card p:not(.home-section-kicker) { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.68); }
.home-cta-actions { margin-top: 0; flex-direction: column; min-width: 220px; }

.home-footer { padding: 70px 0 25px; background: var(--home-dark); color: rgba(255,255,255,.68); }
.home-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 55px; }
.home-footer-brand > p { max-width: 320px; margin: 22px 0 0; }
.home-footer h2 { margin: 0 0 18px; color: var(--home-white); font-family: "Montserrat", sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.home-footer-grid > div:not(.home-footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.home-footer a { color: rgba(255,255,255,.68); text-decoration: none; }
.home-footer a:hover { color: var(--home-aqua); }
.home-footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }
.home-footer-bottom p { margin: 0; }

@media (max-width: 1040px) {
    .home-nav { gap: 18px; }
    .home-nav a { font-size: .76rem; }
    .home-hero-layout { grid-template-columns: 1fr; }
    .home-hero-copy { max-width: 820px; }
    .home-hero-visual { width: min(720px, 100%); }
    .home-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-service-card-featured { grid-column: span 2; }
    .home-footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
    .home-footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 840px) {
    .home-nav-toggle { display: block; }
    .home-nav {
        position: fixed;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 20px;
        background: rgba(6,28,36,.98);
        box-shadow: var(--home-shadow-dark);
    }
    .home-nav.is-open { display: flex; }
    .home-nav a { padding: 13px 12px; font-size: .86rem; }
    .home-nav a::after { display: none; }
    .home-nav .home-nav-cta { margin-top: 8px; text-align: center; }
    .home-nav-open { overflow: hidden; }
    .home-nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
    .home-nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
    .home-nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
    .home-heading-split,
    .home-approach-layout,
    .home-about-layout,
    .home-cta-card { grid-template-columns: 1fr; gap: 35px; }
    .home-approach-copy { position: static; }
    .home-work-grid { grid-template-columns: 1fr; }
    .home-cta-actions { flex-direction: row; }
    .home-footer-grid { grid-template-columns: 1fr 1fr; }
    .home-footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 650px) {
    .home-container { width: min(100% - 28px, 1180px); }
    .home-header-inner { min-height: 74px; }
    .home-brand-mark { width: 39px; height: 39px; font-size: 1.75rem; }
    .home-brand-copy strong { font-size: .94rem; }
    .home-brand-copy small { font-size: .64rem; }
    .home-nav { top: 74px; left: 14px; right: 14px; }
    .home-hero { min-height: auto; padding-top: 125px; }
    .home-hero-layout { padding-bottom: 55px; }
    .home-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
    .home-hero-actions,
    .home-cta-actions { display: grid; }
    .home-button { width: 100%; }
    .home-hero-points { display: grid; gap: 10px; }
    .home-visual-content { padding: 22px; }
    .home-visual-grid { grid-template-columns: 1fr; }
    .home-visual-card { min-height: 110px; }
    .home-trust-strip { padding: 25px 0; flex-wrap: wrap; justify-content: flex-start; }
    .home-trust-strip > span { width: 100%; }
    .home-section { padding: 78px 0; }
    .home-services-grid { grid-template-columns: 1fr; }
    .home-service-card-featured { grid-column: auto; }
    .home-service-card { min-height: auto; }
    .home-process-list article { grid-template-columns: 48px 1fr; gap: 15px; }
    .home-project-preview { min-height: 280px; padding: 18px; }
    .home-project-screen { width: 96%; }
    .home-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .home-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.home-service-price{display:block;margin:-2px 0 14px;color:var(--home-aqua);font-family:"Montserrat",sans-serif;font-size:.8rem;font-weight:800;letter-spacing:.02em}.home-service-card:not(.home-service-card-featured) .home-service-price{color:var(--home-blue)}
