:root {
    --color-page: #123a63;
    --color-surface: rgba(13, 42, 71, 0.72);
    --color-text: #f5fbff;
    --color-text-soft: #c4d8ec;
    --color-border: rgba(143, 210, 255, 0.16);
    --color-blue-700: #8fd2ff;
    --color-blue-600: #67b7ff;
    --color-blue-500: #4c91cf;
    --color-blue-100: rgba(255, 255, 255, 0.1);
    --color-blue-050: #1d5b92;
    --color-shadow: rgba(4, 16, 29, 0.34);
    --font-body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        linear-gradient(180deg, #123a63 0%, #1d5b92 42%, #123a63 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    margin-bottom: -7rem;
    background: rgba(11, 33, 56, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(6, 17, 28, 0.14);
    transition:
        background-color 0.24s ease,
        backdrop-filter 0.24s ease,
        -webkit-backdrop-filter 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.navbar {
    width: min(100%, 1380px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.6rem;
    padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
    background: transparent;
    box-shadow: none;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.75rem;
    position: absolute;
    left: clamp(1.25rem, 3vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
}

.brand-logo {
    display: block;
    width: clamp(9.5rem, 14vw, 12.5rem);
    height: auto;
    object-fit: contain;
}

.brand-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.nav-toggle span {
    width: 1.15rem;
    height: 2px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 999px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 0 clamp(9.5rem, 14vw, 12.5rem);
}

.nav-link,
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.9rem;
    padding: 0.7rem 1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link:hover:visited,
.nav-link:focus-visible:visited,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-blue-700);
    text-shadow:
        0 0 10px rgba(143, 210, 255, 0.75),
        0 0 20px rgba(143, 210, 255, 0.45);
    outline: none;
}

.nav-dropdown {
    position: relative;
}

.nav-caret {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.is-open .nav-caret {
    transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 250px;
    display: none;
    padding: 0.45rem;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    background: var(--color-surface);
    box-shadow: 0 20px 45px var(--color-shadow);
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.5rem;
    height: 0.6rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--color-blue-100);
    color: var(--color-blue-700);
    outline: none;
}

.page-shell {
    flex: 1 0 auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 4rem;
}

.site-footer {
    margin-top: auto;
    background:
        linear-gradient(180deg, rgba(11, 29, 49, 0.96), rgba(11, 29, 49, 1)),
        linear-gradient(135deg, #123a63, #1d5b92);
    color: rgba(255, 255, 255, 0.92);
}

.site-footer-inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) minmax(180px, 0.8fr) minmax(220px, 0.85fr);
    align-items: start;
    justify-content: space-between;
    column-gap: clamp(2rem, 5vw, 5rem);
    row-gap: 1.5rem;
    padding: 2.4rem clamp(1.5rem, 5vw, 3rem) 1.6rem;
}

.footer-block {
    display: grid;
    align-content: start;
    gap: 0.75rem;
}

.footer-brand-block {
    align-content: start;
}

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

.footer-brand-logo {
    display: block;
    width: clamp(11rem, 16vw, 13rem);
    height: auto;
    object-fit: contain;
}

.footer-eyebrow,
.footer-heading {
    margin: 0;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-copy,
.footer-note,
.site-footer-bar p {
    margin: 0;
    line-height: 1.7;
}

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

.footer-note {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
}

.footer-links {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin: 0;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.42);
    text-underline-offset: 0.18em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration-color: #ffffff;
    outline: none;
}

.site-footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem clamp(1.5rem, 5vw, 3rem) 1.35rem;
}

.site-footer-bar p {
    width: min(100%, 1380px);
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    text-align: center;
}

.chat-widget {
    --chat-trigger-size: 4.2rem;
    position: fixed;
    right: clamp(1rem, 2vw, 1.6rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 140;
    display: grid;
    justify-items: end;
    gap: 0.2rem;
    max-width: calc(100vw - 2rem);
}

.chat-widget-prompt {
    position: relative;
    width: min(24rem, calc(100vw - 2rem));
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.8rem;
    padding: 0.95rem 0.95rem 0.95rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 18px 42px rgba(4, 16, 29, 0.26),
        0 4px 14px rgba(4, 16, 29, 0.12);
    color: #17324f;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.chat-widget-prompt::after {
    content: "";
    position: absolute;
    right: calc((var(--chat-trigger-size) / 2) - 0.55rem);
    bottom: -0.55rem;
    width: 1.1rem;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.96);
    transform: rotate(45deg);
    border-radius: 0.18rem;
}

.chat-widget-prompt-avatar {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(20, 71, 118, 0.18);
}

.chat-widget-prompt-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-widget-prompt-copy p {
    margin: 0;
    color: #28496a;
    font-size: 0.98rem;
    line-height: 1.45;
}

.chat-widget-prompt-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #274767;
    cursor: pointer;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.chat-widget-prompt-close:hover,
.chat-widget-prompt-close:focus-visible {
    background: rgba(23, 50, 79, 0.08);
    color: #17324f;
    outline: none;
}

.chat-widget-prompt-close span {
    font-size: 1.25rem;
    line-height: 1;
}

.chat-widget-panel {
    position: absolute;
    right: 0;
    bottom: calc(var(--chat-trigger-size) + 0.2rem);
    width: min(25rem, calc(100vw - 2rem));
    max-width: 100%;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 18px 42px rgba(4, 16, 29, 0.26),
        0 4px 14px rgba(4, 16, 29, 0.12);
    overflow: hidden;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.chat-widget-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0.9rem;
    background: linear-gradient(90deg, #2167a8, #67b7ff);
    color: #ffffff;
}

.chat-widget-heading h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.chat-widget-minimize {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    border-radius: 999px;
}

.chat-widget-minimize:hover,
.chat-widget-minimize:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.chat-widget-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(20, 71, 118, 0.18);
}

.chat-widget-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-widget-body {
    display: grid;
    gap: 1rem;
    padding: 0.9rem;
    min-width: 0;
    max-width: 100%;
    max-height: min(42rem, calc(100vh - 7.5rem));
    overflow-y: auto;
}

.chat-widget-message {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.chat-widget-message-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    overflow: hidden;
}

.chat-widget-message-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-widget-message-bubble {
    min-width: 0;
    max-width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 0.9rem;
    background: #edf2f8;
}

.chat-widget-message-bubble p {
    margin: 0;
    color: #344d67;
    font-size: 0.98rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.chat-widget-form {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
    max-width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(28, 68, 110, 0.12);
    border-radius: 0.95rem;
    background: #ffffff;
}

.chat-widget-field {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.chat-widget-field input,
.chat-widget-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(28, 68, 110, 0.18);
    border-radius: 0.75rem;
    background: #ffffff;
    color: #17324f;
    font: inherit;
    padding: 0.85rem 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget-field textarea {
    resize: vertical;
    min-height: 6.5rem;
}

.chat-widget-field input::placeholder,
.chat-widget-field textarea::placeholder {
    color: #6c8097;
}

.chat-widget-field input:focus,
.chat-widget-field textarea:focus {
    border-color: rgba(43, 116, 182, 0.42);
    box-shadow:
        0 0 0 1px rgba(103, 183, 255, 0.14),
        0 0 18px rgba(88, 169, 245, 0.12);
}

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

.chat-widget-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    justify-content: center;
    padding-top: 0.2rem;
}

.chat-widget-submit {
    min-width: 8.5rem;
    min-height: 2.95rem;
    padding: 0.8rem 1.4rem;
    border: 0;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, #3f91d9, #2167a8);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 14px 24px rgba(33, 103, 168, 0.2);
}

.chat-widget-submit:hover,
.chat-widget-submit:focus-visible {
    background: linear-gradient(180deg, #4da1ea, #2a76bb);
    outline: none;
}

.chat-widget-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--chat-trigger-size);
    height: var(--chat-trigger-size);
    padding: 0.6rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #67b7ff, #2b74b6);
    box-shadow:
        0 18px 36px rgba(43, 116, 182, 0.24),
        0 8px 18px rgba(4, 16, 29, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.chat-widget-trigger:hover,
.chat-widget-trigger:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 20px 40px rgba(43, 116, 182, 0.28),
        0 10px 22px rgba(4, 16, 29, 0.18);
    outline: none;
}

.chat-widget-trigger-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-widget.is-prompt-hidden .chat-widget-prompt,
.chat-widget.is-collapsed .chat-widget-panel {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.6rem);
    pointer-events: none;
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 56rem;
    margin-bottom: 2rem;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.86) 0%, rgba(8, 14, 22, 0.76) 34%, rgba(8, 14, 22, 0.42) 68%, rgba(8, 14, 22, 0.24) 100%),
        url("../images/main-bg-1.png");
    background-attachment: fixed;
    background-position: center 55%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 20px 46px rgba(18, 58, 99, 0.14);
}

.hero-banner-outdoor {
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.86) 0%, rgba(8, 14, 22, 0.76) 34%, rgba(8, 14, 22, 0.42) 68%, rgba(8, 14, 22, 0.24) 100%),
        url("../images/deck-1.png");
    background-attachment: fixed;
    background-position: center 52%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-contact {
    min-height: 34rem;
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.88) 0%, rgba(8, 14, 22, 0.76) 34%, rgba(8, 14, 22, 0.46) 68%, rgba(8, 14, 22, 0.28) 100%),
        url("../images/commercial-reno-1.png");
    background-attachment: fixed;
    background-position: center 42%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-commercial {
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.88) 0%, rgba(8, 14, 22, 0.76) 34%, rgba(8, 14, 22, 0.46) 68%, rgba(8, 14, 22, 0.28) 100%),
        url("../images/commercial-reno-1.png");
    background-attachment: fixed;
    background-position: center 48%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-home-reno {
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.88) 0%, rgba(8, 14, 22, 0.76) 34%, rgba(8, 14, 22, 0.46) 68%, rgba(8, 14, 22, 0.28) 100%),
        url("../images/home-renos-2.png");
    background-attachment: fixed;
    background-position: center 92%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-contact .hero-banner-overlay,
.hero-banner-contact .hero-banner-inner {
    min-height: 34rem;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 42%);
    pointer-events: none;
}

.hero-banner-overlay {
    position: relative;
    z-index: 1;
    min-height: 56rem;
}

.hero-banner-inner {
    width: min(100%, 1380px);
    min-height: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4.5rem clamp(1.5rem, 6vw, 5rem);
    color: #ffffff;
}

.hero-banner-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    margin: 0 0 1.1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(76, 145, 207, 0.9);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-banner h1 {
    max-width: 16ch;
    font-size: clamp(3rem, 5.8vw, 4.85rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.hero-banner-text {
    max-width: 56rem;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.hero-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.page-hero-motion .hero-motion-item {
    opacity: 0;
    transform: translateY(1.9rem);
    filter: blur(8px);
}

.page-hero-motion.is-animated .hero-motion-item {
    animation: homeHeroReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-hero-motion.is-animated .hero-motion-item:nth-child(1) {
    animation-delay: 0.12s;
}

.page-hero-motion.is-animated .hero-motion-item:nth-child(2) {
    animation-delay: 0.26s;
}

.page-hero-motion.is-animated .hero-motion-item:nth-child(3) {
    animation-delay: 0.42s;
}

.page-hero-motion.is-animated .hero-motion-item:nth-child(4) {
    animation-delay: 0.58s;
}

.page-hero-motion.is-animated .hero-motion-item:nth-child(5) {
    animation-delay: 0.74s;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(3.1rem);
    filter: blur(12px);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes homeHeroReveal {
    from {
        opacity: 0;
        transform: translateY(1.9rem);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero-motion .hero-motion-item,
    .scroll-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
        transition: none;
    }
}

h1 {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.7;
}

.text-highlight {
    color: #8fd2ff;
}

.eyebrow,
.card-label {
    margin: 0;
    color: var(--color-blue-700);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.info-card,
.page-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 16px 40px var(--color-shadow);
}

.hero-copy {
    padding: 2.5rem;
}

.hero-text {
    max-width: 42rem;
    margin-top: 1rem;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(120, 210, 255, 0.34),
        0 0 18px rgba(89, 191, 255, 0.42),
        0 0 34px rgba(41, 153, 255, 0.34),
        0 10px 24px rgba(12, 56, 98, 0.24);
    outline: none;
}

.button-primary {
    background: var(--color-blue-700);
    color: #ffffff;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.button-gold {
    background: #4c91cf;
    color: #ffffff;
}

.button-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.hero-card,
.info-card,
.page-panel {
    padding: 1.8rem;
}

.hero-card-text,
.metric-label,
.info-card p,
.page-panel p {
    color: var(--color-text-soft);
}

.hero-swatch-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.swatch {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 2px solid var(--color-surface);
    box-shadow: 0 8px 18px rgba(19, 51, 84, 0.12);
}

.swatch-slate {
    background: #15324b;
}

.swatch-mist {
    background: #dcebf9;
}

.swatch-sky {
    background: #70a9dc;
}

.swatch-night {
    background: #234d74;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.metric {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.metric-value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.metric-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
}

.content-grid {
    width: min(100%, 1180px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.outdoor-detail-stack {
    width: min(100%, 1280px);
    margin: 4.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.renovation-detail-stack {
    width: min(100%, 1280px);
    margin: 4.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.outdoor-feature,
.renovation-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(10, 34, 58, 0.92), rgba(15, 49, 79, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 50px rgba(19, 51, 84, 0.1);
    overflow: hidden;
}

.outdoor-feature:nth-child(even),
.renovation-feature:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
}

.outdoor-feature:nth-child(even) .outdoor-feature-media,
.renovation-feature:nth-child(even) .renovation-feature-media {
    order: 2;
}

.outdoor-feature::before,
.renovation-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.04), transparent 38%),
        linear-gradient(180deg, rgba(143, 210, 255, 0.06), transparent 45%);
    pointer-events: none;
}

.outdoor-feature-media,
.renovation-feature-media {
    min-height: 24rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.outdoor-feature-interlock .outdoor-feature-media {
    background-image:
        linear-gradient(180deg, rgba(8, 14, 22, 0.2), rgba(8, 14, 22, 0.4)),
        url("../images/interlock-1.png");
}

.outdoor-feature-decking .outdoor-feature-media {
    background-image:
        linear-gradient(180deg, rgba(8, 14, 22, 0.16), rgba(8, 14, 22, 0.42)),
        url("../images/deck-1.png");
}

.outdoor-feature-fencing .outdoor-feature-media {
    background-image:
        linear-gradient(180deg, rgba(8, 14, 22, 0.18), rgba(8, 14, 22, 0.44)),
        url("../images/fence-1.png");
}

.renovation-feature-office .renovation-feature-media,
.renovation-feature-tenant .renovation-feature-media,
.renovation-feature-retail .renovation-feature-media {
    background-image:
        linear-gradient(180deg, rgba(8, 14, 22, 0.24), rgba(8, 14, 22, 0.46)),
        url("../images/commercial-reno-1.png");
}

.renovation-feature-office .renovation-feature-media {
    background-position: center 44%;
}

.renovation-feature-tenant .renovation-feature-media {
    background-position: center 56%;
}

.renovation-feature-retail .renovation-feature-media {
    background-position: center 34%;
}

.renovation-feature-kitchen .renovation-feature-media,
.renovation-feature-bathroom .renovation-feature-media,
.renovation-feature-basement .renovation-feature-media {
    background-image:
        linear-gradient(180deg, rgba(8, 14, 22, 0.18), rgba(8, 14, 22, 0.42)),
        url("../images/home-reno-1.png");
}

.renovation-feature-kitchen .renovation-feature-media {
    background-position: center 42%;
}

.renovation-feature-bathroom .renovation-feature-media {
    background-position: center 58%;
}

.renovation-feature-basement .renovation-feature-media {
    background-position: center 30%;
}

.outdoor-feature-copy,
.renovation-feature-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.8rem, 3vw, 2.6rem);
}

.outdoor-feature-copy h2,
.renovation-feature-copy h2 {
    max-width: 15ch;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.outdoor-feature-text,
.renovation-feature-text {
    margin: 0;
    max-width: 38rem;
    color: var(--color-text-soft);
    font-size: 1rem;
}

.outdoor-feature-points,
.renovation-feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.outdoor-feature-points span,
.renovation-feature-points span {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(143, 210, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e4f3ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.outdoor-feature-actions,
.renovation-feature-actions {
    padding-top: 0.35rem;
}

.legacy-band {
    width: min(100%, 1280px);
    margin: 4.5rem auto;
    padding: 0 1.5rem;
}

.legacy-band-shell {
    position: relative;
    display: grid;
    gap: 1.5rem;
    align-items: start;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid rgba(31, 95, 154, 0.1);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(9, 33, 56, 0.92), rgba(17, 58, 99, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 52px rgba(19, 51, 84, 0.08);
    overflow: hidden;
}

.legacy-band-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(43, 116, 182, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 116, 182, 0.04) 1px, transparent 1px);
    background-size: 3.25rem 3.25rem;
    mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.16), transparent 70%);
    pointer-events: none;
}

.legacy-band-shell::after {
    content: none;
}

.legacy-coverage::after {
    content: none;
}

.why-mmg-shell {
    position: relative;
    display: grid;
    gap: 2rem;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(10, 35, 59, 0.9), rgba(17, 58, 99, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 50px rgba(19, 51, 84, 0.08);
    overflow: hidden;
}

.why-mmg-shell::after {
    content: none;
}

.contact-home-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(10, 35, 59, 0.9), rgba(17, 58, 99, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 50px rgba(19, 51, 84, 0.08);
    overflow: hidden;
}

.contact-home-shell::after {
    content: none;
}

.legacy-band-shell::after,
.legacy-coverage::after,
.why-mmg-shell::after,
.contact-home-shell::after {
    pointer-events: none;
}

.legacy-band-copy,
.legacy-band-side,
.legacy-coverage {
    position: relative;
    z-index: 1;
}

.legacy-band-top {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(140px, 0.2fr);
    gap: 1.5rem;
    align-items: end;
}

.legacy-band-copy {
    display: grid;
    align-content: start;
    padding-right: 0.5rem;
}

.legacy-band-copy .eyebrow {
    color: rgba(143, 210, 255, 0.78);
}

.legacy-band-copy h2 {
    margin-top: 0.7rem;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.55rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 17ch;
}

.legacy-band-copy .text-highlight {
    color: #8fd2ff;
}

.legacy-band-text {
    max-width: 56rem;
    margin: 1rem 0 0;
    color: rgba(230, 242, 255, 0.82);
    font-size: 1.02rem;
}

.legacy-coverage {
    position: relative;
    padding: 1.3rem;
    border: 1px solid rgba(31, 95, 154, 0.1);
    border-radius: 1.55rem;
    background: rgba(9, 33, 56, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 32px rgba(19, 51, 84, 0.05);
    backdrop-filter: blur(8px);
}

.legacy-coverage-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.legacy-coverage-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    border: 2px solid #2b74b6;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
}

.legacy-coverage-icon::after {
    content: "";
    position: absolute;
    inset: 0.2rem;
    border-radius: 999px;
    background: #2b74b6;
}

.legacy-coverage-label {
    margin: 0;
    color: var(--color-blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legacy-coverage-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1rem;
}

.legacy-coverage-group {
    padding: 1rem;
    border: 1px solid rgba(31, 95, 154, 0.08);
    border-radius: 1.2rem;
    background:
        linear-gradient(180deg, rgba(15, 48, 80, 0.74), rgba(11, 38, 64, 0.84));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.legacy-coverage-group h3 {
    margin: 0;
    color: var(--color-blue-700);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.legacy-coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0.8rem 0 0;
    padding: 0;
    list-style: none;
}

.legacy-coverage-list li {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 999px;
    background: rgba(20, 58, 93, 0.92);
    color: #f5fbff;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.legacy-band-side {
    align-self: stretch;
    justify-self: stretch;
}

.legacy-band-side-panel {
    display: grid;
    align-content: center;
    min-height: 100%;
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(31, 95, 154, 0.08);
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(14, 47, 79, 0.8), rgba(11, 38, 64, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 28px rgba(19, 51, 84, 0.05);
}

.legacy-band-side-kicker {
    color: var(--color-blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legacy-band-side-panel p {
    margin: 0.75rem 0 0;
    color: rgba(230, 242, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.75;
}

.services-showcase {
    width: min(100%, 1280px);
    margin: 4.5rem auto;
    padding: 0 1.5rem;
}

.services-showcase-header {
    margin-bottom: 1.8rem;
}

.services-showcase-header h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(2.35rem, 4.4vw, 3.85rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    position: relative;
    display: grid;
    min-height: 26rem;
    grid-template-rows: minmax(13rem, 1.25fr) auto;
    border: 1px solid rgba(31, 95, 154, 0.14);
    border-radius: 1.7rem;
    background: linear-gradient(180deg, rgba(11, 38, 64, 0.82), rgba(16, 52, 84, 0.92));
    box-shadow: 0 18px 40px rgba(19, 51, 84, 0.1);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(122, 213, 255, 0.38),
        0 0 26px rgba(93, 198, 255, 0.42),
        0 0 62px rgba(46, 154, 255, 0.34),
        0 0 96px rgba(20, 109, 214, 0.2),
        0 24px 56px rgba(19, 51, 84, 0.18);
    border-color: rgba(120, 210, 255, 0.5);
    outline: none;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    grid-column: span 6;
}

.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 4;
}

.service-card-media {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(17, 58, 99, 0.96), rgba(52, 116, 182, 0.86)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 42%);
}

.service-card-media::before {
    content: none;
}

.service-card-media::after {
    content: none;
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.service-card-content {
    display: grid;
    gap: 0.7rem;
    padding: 1.45rem 1.45rem 1.55rem;
}

.service-card-content p {
    margin: 0;
    color: var(--color-text-soft);
}

.service-card-commercial .service-card-media {
    background-image: url("../images/commercial-reno-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card-home .service-card-media {
    background-image: url("../images/home-reno-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card-interlock .service-card-media {
    background-image: url("../images/interlock-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card-decking .service-card-media {
    background-image: url("../images/deck-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card-fencing .service-card-media {
    background-image: url("../images/fence-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-mmg {
    width: min(100%, 1280px);
    margin: 0 auto 4.5rem;
    padding: 0 1.5rem;
}

.why-mmg-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(103, 183, 255, 0.58), rgba(103, 183, 255, 0));
    pointer-events: none;
}

.why-mmg-lead {
    position: relative;
    z-index: 1;
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
}

.why-mmg-lead h2 {
    margin-top: 0;
    font-size: clamp(2.5rem, 4.8vw, 4.35rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.why-mmg-text {
    max-width: 44rem;
    margin: 1rem 0 0;
    color: var(--color-text-soft);
    font-size: 1.03rem;
}

.why-mmg-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.why-mmg-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-height: 100%;
    padding: 1.35rem 1.3rem;
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 1.4rem;
    background:
        linear-gradient(180deg, rgba(14, 47, 79, 0.76), rgba(11, 38, 64, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 34px rgba(19, 51, 84, 0.06);
    backdrop-filter: blur(10px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-mmg-item:hover,
.why-mmg-item:focus-within {
    transform: translateY(-3px);
    border-color: rgba(93, 172, 244, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(103, 183, 255, 0.08),
        0 12px 28px rgba(19, 51, 84, 0.08),
        0 0 24px rgba(88, 169, 245, 0.1);
}

.why-mmg-item-copy h3 {
    margin-top: 0;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.why-mmg-item-copy p {
    margin: 0.65rem 0 0;
    color: var(--color-text-soft);
}

.why-mmg-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(103, 183, 255, 0.18), rgba(103, 183, 255, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 10px 20px rgba(57, 133, 214, 0.12);
    color: #2b74b6;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.reviews-showcase {
    width: min(100%, 1280px);
    margin: 0 auto 4.5rem;
    padding: 0 1.5rem;
}

.reviews-showcase-hero {
    margin-bottom: 0;
    padding-bottom: 4rem;
}

.reviews-showcase-hero .reviews-shell {
    width: min(100%, 1380px);
    margin: 0 auto;
}

.reviews-shell {
    position: relative;
    display: grid;
    gap: 1.5rem;
    padding: 0;
}

.reviews-lead,
.reviews-carousel,
.reviews-dots {
    position: relative;
    z-index: 1;
}

.reviews-lead {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.reviews-lead h2 {
    margin-top: 0.35rem;
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.reviews-subtitle {
    margin: 0.85rem 0 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.reviews-viewport {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.45s ease;
}

.review-slide {
    width: 100%;
    flex: 0 0 100%;
    display: grid;
    gap: 1.25rem;
    justify-items: center;
    padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 3rem);
    text-align: center;
    background: transparent;
}

.reviews-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border: 1px solid rgba(143, 210, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f5fbff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.reviews-control:hover,
.reviews-control:focus-visible {
    background: rgba(143, 210, 255, 0.16);
    border-color: rgba(143, 210, 255, 0.3);
    transform: translateY(-1px);
    outline: none;
}

.reviews-control span {
    font-size: 1.2rem;
    line-height: 1;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.review-rating span {
    color: #8fd2ff;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    letter-spacing: 0.14em;
}

.review-rating p {
    margin: 0;
    color: var(--color-blue-700);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-quote {
    margin: 0;
    position: relative;
    max-width: 56rem;
    padding-left: 0;
}

.review-quote p {
    margin: 0;
    color: #f5fbff;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.7;
}

.review-author {
    margin: 0;
    color: rgba(230, 242, 255, 0.72);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.reviews-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: rgba(143, 210, 255, 0.22);
}

.reviews-dot.is-active {
    background: #8fd2ff;
    box-shadow: 0 0 12px rgba(143, 210, 255, 0.45);
}

.contact-home {
    width: min(100%, 1280px);
    margin: 0 auto 4.5rem;
    padding: 0 1.5rem;
}

.contact-home-copy,
.contact-home-form {
    position: relative;
    z-index: 1;
}

.contact-home-copy {
    align-self: start;
}

.contact-home-copy h2 {
    margin-top: 0.55rem;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.contact-home-text {
    margin: 1rem 0 0;
    color: var(--color-text-soft);
    font-size: 1.02rem;
}

.contact-home-cards {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.contact-home-info-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    align-items: center;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 1.2rem;
    background: rgba(13, 42, 71, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 26px rgba(19, 51, 84, 0.05);
    backdrop-filter: blur(8px);
}

.contact-home-info-icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
}

.contact-home-info-icon img {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
}

.contact-home-info-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.contact-home-info-label {
    color: var(--color-blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-home-info-copy p {
    margin: 0;
    color: var(--color-text);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-home-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(31, 95, 154, 0.1);
    border-radius: 1.6rem;
    background: rgba(11, 38, 64, 0.76);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 34px rgba(19, 51, 84, 0.06);
    backdrop-filter: blur(10px);
}

.contact-home-field {
    display: grid;
    gap: 0.45rem;
}

.contact-home-field-full,
.contact-home-turnstile,
.contact-home-actions {
    grid-column: 1 / -1;
}

.contact-home-field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
}

.contact-home-field input,
.contact-home-field select,
.contact-home-field textarea {
    width: 100%;
    border: 1px solid rgba(31, 95, 154, 0.14);
    border-radius: 1rem;
    background: rgba(8, 30, 50, 0.82);
    color: var(--color-text);
    font: inherit;
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-home-field textarea {
    min-height: 9.5rem;
    resize: vertical;
}

.contact-home-field input::placeholder,
.contact-home-field textarea::placeholder {
    color: #7590aa;
}

.contact-home-field input:focus,
.contact-home-field select:focus,
.contact-home-field textarea:focus {
    border-color: rgba(88, 169, 245, 0.42);
    box-shadow:
        0 0 0 1px rgba(103, 183, 255, 0.12),
        0 0 20px rgba(88, 169, 245, 0.12);
    background: rgba(8, 30, 50, 0.92);
}

.contact-home-actions {
    display: grid;
    gap: 0.7rem;
    padding-top: 0.25rem;
}

.contact-home-turnstile,
.chat-widget-turnstile {
    max-width: 100%;
    min-height: 65px;
    overflow: hidden;
}

.chat-widget-turnstile {
    width: 100%;
}

.contact-home-submit {
    justify-self: start;
    min-height: 3.35rem;
    padding: 0.95rem 1.5rem;
    border: 1px solid rgba(31, 95, 154, 0.16);
    background:
        linear-gradient(180deg, #3f91d9, #2167a8);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 16px 30px rgba(33, 103, 168, 0.24);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-home-submit:hover,
.contact-home-submit:focus-visible {
    background:
        linear-gradient(180deg, #4da1ea, #2a76bb);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 0 1px rgba(120, 210, 255, 0.3),
        0 0 18px rgba(89, 191, 255, 0.42),
        0 0 34px rgba(41, 153, 255, 0.34),
        0 18px 34px rgba(33, 103, 168, 0.3);
}

.site-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.site-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 33, 0.68);
    backdrop-filter: blur(6px);
}

.site-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 32rem);
    padding: 2rem 1.4rem 1.35rem;
    border: 1px solid rgba(32, 91, 147, 0.2);
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at top, rgba(83, 165, 236, 0.16), transparent 58%),
        linear-gradient(180deg, #ffffff, #edf5fb);
    box-shadow: 0 24px 60px rgba(6, 24, 42, 0.3);
    color: #17324f;
}

.site-popup-dialog-error {
    border-color: rgba(186, 82, 82, 0.24);
    background:
        radial-gradient(circle at top, rgba(222, 126, 126, 0.15), transparent 58%),
        linear-gradient(180deg, #ffffff, #fdf1f1);
}

.site-popup-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 50, 79, 0.08);
    color: #17324f;
    font-size: 1.25rem;
    cursor: pointer;
}

.site-popup-eyebrow {
    margin: 0 0 0.55rem;
    color: #2f6c9f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-popup-dialog-error .site-popup-eyebrow {
    color: #a14a4a;
}

.site-popup-title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.08;
}

.site-popup-text {
    margin: 0.9rem 0 1.25rem;
    color: #47637d;
    line-height: 1.65;
}

.site-popup-text a {
    color: #1f6eb2;
    font-weight: 700;
}

.site-popup-button {
    min-height: 3rem;
    padding: 0.85rem 1.4rem;
    border: 0;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #3f91d9, #2167a8);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(33, 103, 168, 0.24);
}

.info-card h2 {
    margin-top: 0.55rem;
    margin-bottom: 0.6rem;
}

.page-panel {
    max-width: 760px;
}

.commercial-simple-showcase {
    width: min(100%, 1280px);
    margin: 0 auto 4.5rem;
    padding: 0 1.5rem;
}

.commercial-simple-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(10, 35, 59, 0.94), rgba(17, 58, 99, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 50px rgba(19, 51, 84, 0.12);
    overflow: hidden;
}

.commercial-simple-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(43, 116, 182, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 116, 182, 0.04) 1px, transparent 1px);
    background-size: 3rem 3rem;
    mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.22), transparent 72%);
    pointer-events: none;
}

.commercial-simple-media,
.commercial-simple-copy {
    position: relative;
    z-index: 1;
}

.commercial-simple-media img {
    display: block;
    width: 100%;
    min-height: 24rem;
    border-radius: 1.4rem;
    object-fit: cover;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 36px rgba(19, 51, 84, 0.1);
}

.commercial-simple-copy h2 {
    margin-top: 0.55rem;
    max-width: 18ch;
    font-size: clamp(2rem, 3.7vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.commercial-simple-intro {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: rgba(230, 242, 255, 0.82);
}

.commercial-simple-facts {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.commercial-simple-fact {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(143, 210, 255, 0.12);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.05);
}

.commercial-simple-fact h3 {
    font-size: 1rem;
}

.commercial-simple-fact p {
    margin: 0.35rem 0 0;
    color: var(--color-text-soft);
}

.reno-blueprint-showcase,
.reno-simple-services,
.reno-simple-band,
.reno-simple-cta {
    width: min(100%, 1280px);
    margin: 0 auto 4.5rem;
    padding: 0 1.5rem;
}

.reno-simple-band,
.reno-simple-cta {
    position: relative;
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(10, 35, 59, 0.92), rgba(17, 58, 99, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 50px rgba(19, 51, 84, 0.08);
    overflow: hidden;
}

.reno-simple-band::before,
.reno-simple-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(43, 116, 182, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 116, 182, 0.04) 1px, transparent 1px);
    background-size: 3rem 3rem;
    mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.22), transparent 72%);
    pointer-events: none;
}

.reno-blueprint-panel,
.reno-simple-band-copy,
.reno-simple-steps,
.reno-simple-cta > * {
    position: relative;
    z-index: 1;
}

.reno-blueprint-showcase {
    margin-top: -7rem;
    position: relative;
    z-index: 2;
}

.reno-blueprint-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(10, 35, 59, 0.94), rgba(17, 58, 99, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 50px rgba(19, 51, 84, 0.12);
    overflow: hidden;
}

.reno-blueprint-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(43, 116, 182, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 116, 182, 0.04) 1px, transparent 1px);
    background-size: 3rem 3rem;
    mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.22), transparent 72%);
    pointer-events: none;
}

.reno-blueprint-frame-wrap,
.reno-blueprint-copy {
    position: relative;
    z-index: 1;
}

.reno-blueprint-frame-wrap {
    display: flex;
    justify-content: center;
}

.reno-blueprint-frame {
    width: min(100%, 22rem);
    padding: 1rem;
    border: 1px solid rgba(143, 210, 255, 0.18);
    border-radius: 1.7rem;
    background: rgba(7, 28, 47, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 36px rgba(19, 51, 84, 0.1);
}

.reno-blueprint-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.15rem;
    object-fit: cover;
}

.reno-blueprint-copy h2 {
    margin-top: 0.55rem;
    max-width: 18ch;
    font-size: clamp(2rem, 3.7vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.reno-blueprint-intro {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: rgba(230, 242, 255, 0.82);
}

.reno-blueprint-facts {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.reno-blueprint-fact {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(143, 210, 255, 0.12);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.05);
}

.reno-blueprint-fact h3 {
    font-size: 1rem;
}

.reno-blueprint-fact p {
    margin: 0.35rem 0 0;
    color: var(--color-text-soft);
}

.reno-simple-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.reno-simple-card {
    padding: 1.6rem;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    background: var(--color-surface);
    box-shadow: 0 16px 40px var(--color-shadow);
}

.reno-simple-card h2 {
    margin-top: 0.55rem;
    color: #ffffff;
}

.reno-simple-band {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.4rem;
    align-items: center;
    padding: clamp(1.6rem, 3vw, 2.4rem);
}

.reno-simple-band-copy {
    align-self: center;
    max-width: 34rem;
}

.reno-simple-band-copy p:last-child {
    margin: 1rem 0 0;
    color: rgba(230, 242, 255, 0.8);
}

.reno-simple-band-copy h2 {
    margin-top: 0.55rem;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.reno-simple-steps {
    display: grid;
    gap: 1rem;
}

.reno-simple-step {
    padding: 1.25rem 1.3rem;
    border: 1px solid rgba(31, 95, 154, 0.12);
    border-radius: 1.35rem;
    background: rgba(11, 38, 64, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 28px rgba(19, 51, 84, 0.05);
}

.reno-simple-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: rgba(143, 210, 255, 0.14);
    color: var(--color-blue-700);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.reno-simple-step h3 {
    margin-top: 0.85rem;
}

.reno-simple-step p {
    margin: 0.5rem 0 0;
    color: var(--color-text-soft);
}

.reno-simple-cta {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding: clamp(1.8rem, 3vw, 2.8rem);
    text-align: center;
}

.reno-simple-cta h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.reno-simple-cta p {
    margin: 0;
    max-width: 38rem;
    color: rgba(230, 242, 255, 0.82);
}

@media (max-width: 820px) {
    .site-header {
        margin-bottom: 0;
    }

    .navbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        justify-content: normal;
        position: static;
        min-height: 4.9rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        width: 2.55rem;
        height: 2.55rem;
        border-radius: 0.8rem;
    }

    .brand {
        position: static;
        justify-self: start;
        transform: none;
        height: auto;
    }

    .brand-logo {
        width: 8.75rem;
        max-width: 100%;
        height: auto;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        margin: 0;
        padding: 0.85rem 0 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-link,
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 0.45rem;
        box-shadow: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:not(.is-open) .nav-dropdown-menu {
        display: none;
    }

    .hero,
    .content-grid,
    .hero-metrics,
    .legacy-band-top {
        grid-template-columns: 1fr;
    }

    .outdoor-feature,
    .outdoor-feature:nth-child(even),
    .renovation-feature,
    .renovation-feature:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .outdoor-feature:nth-child(even) .outdoor-feature-media,
    .renovation-feature:nth-child(even) .renovation-feature-media {
        order: 0;
    }

    .outdoor-feature-media,
    .renovation-feature-media {
        min-height: 18rem;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 6;
    }

    .why-mmg-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .legacy-coverage-groups {
        grid-template-columns: 1fr;
    }

    .contact-home-shell,
    .contact-home-form,
    .commercial-simple-panel,
    .reno-blueprint-panel,
    .reno-simple-band,
    .reno-simple-services {
        grid-template-columns: 1fr;
    }

    .hero-banner,
    .hero-banner-overlay,
    .hero-banner-inner {
        min-height: 42rem;
    }

    .legacy-band-side {
        justify-self: start;
        width: 100%;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-bottom: 1.4rem;
    }
}

@media (max-width: 640px) {
    .chat-widget {
        --chat-trigger-size: 3.75rem;
        right: 0.85rem;
        bottom: 0.85rem;
        gap: 0.15rem;
    }

    .chat-widget-prompt {
        width: min(23rem, calc(100vw - 1.7rem));
        padding: 0.85rem 0.85rem 0.85rem 0.8rem;
    }

    .chat-widget-panel {
        width: min(24rem, calc(100vw - 1.7rem));
    }

    .chat-widget-header {
        padding: 0.75rem 0.8rem;
    }

    .chat-widget-body {
        padding: 0.8rem;
        max-height: min(40rem, calc(100vh - 6.75rem));
    }

    .chat-widget-prompt-copy p,
    .chat-widget-message-bubble p {
        font-size: 0.92rem;
    }

    .chat-widget-trigger {
        width: var(--chat-trigger-size);
        height: var(--chat-trigger-size);
    }

    .site-header {
        margin-bottom: 0;
    }

    .navbar {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        min-height: 4.45rem;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .brand {
        height: auto;
    }

    .brand-logo {
        width: 8rem;
        max-width: 100%;
        height: auto;
    }

    .nav-toggle {
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 0.72rem;
    }

    .nav-toggle span {
        width: 1rem;
        height: 1.5px;
    }

    .hero-copy,
    .hero-card,
    .info-card,
    .page-panel {
        padding: 1.35rem;
    }

    .hero-banner {
        background-attachment: scroll;
    }

    .hero-banner,
    .hero-banner-overlay,
    .hero-banner-inner {
        min-height: 34rem;
    }

    h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero-banner-text {
        font-size: 0.98rem;
    }

    .hero,
    .content-grid,
    .commercial-simple-showcase,
    .legacy-band,
    .reno-blueprint-showcase,
    .reno-simple-services,
    .reno-simple-band,
    .reno-simple-cta,
    .renovation-detail-stack,
    .outdoor-detail-stack,
    .services-showcase,
    .why-mmg,
    .contact-home {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .reno-blueprint-showcase,
    .commercial-simple-showcase,
    .reno-simple-services,
    .reno-simple-band,
    .reno-simple-cta {
        width: auto;
        margin-left: 1rem;
        margin-right: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .services-showcase,
    .why-mmg,
    .reviews-showcase,
    .contact-home,
    .legacy-band {
        margin-bottom: 3.2rem;
    }

    .why-mmg-shell {
        gap: 1.45rem;
        padding: 1.4rem;
    }

    .outdoor-detail-stack,
    .renovation-detail-stack {
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
    }

    .outdoor-feature-copy,
    .renovation-feature-copy {
        padding: 1.4rem;
    }

    .outdoor-feature-copy h2,
    .renovation-feature-copy h2 {
        max-width: none;
        font-size: clamp(1.9rem, 9vw, 2.55rem);
    }

    .legacy-band-shell {
        padding: 1.35rem;
    }

    .legacy-coverage {
        padding: 1rem;
    }

    .legacy-coverage-group {
        padding: 0.9rem;
    }

    .contact-home-shell {
        padding: 1.4rem;
    }

    .reviews-shell {
        gap: 1.2rem;
    }

    .reviews-lead {
        max-width: none;
        text-align: center;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .reviews-control {
        display: none;
    }

    .review-slide {
        padding: 1.6rem 1.15rem 1.45rem;
    }

    .review-quote {
        padding-left: 1.4rem;
    }

    .commercial-simple-panel {
        padding: 1.2rem;
    }

    .commercial-simple-media img {
        min-height: 18rem;
    }

    .reno-simple-band,
    .reno-simple-cta {
        padding: 1.4rem;
    }

    .reno-blueprint-showcase {
        margin-top: -2rem;
    }

    .reno-blueprint-panel {
        padding: 1.2rem;
    }

    .contact-home-form {
        padding: 1rem;
    }

    .contact-home-submit {
        width: 100%;
        justify-self: stretch;
    }

    .why-mmg-item {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.9rem;
        padding: 1.15rem;
    }

    .services-showcase-header {
        margin-bottom: 1.2rem;
    }

    .service-card {
        min-height: 22.5rem;
        grid-template-rows: minmax(11rem, 1fr) auto;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .brand {
        gap: 0.55rem;
    }

    .brand-logo {
        width: min(100%, 26vw);
    }

    .brand-name {
        font-size: 0.88rem;
    }
}
