@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700,800&display=swap');

:root {
    --brand-green: #1E9E3C;
    --brand-green-dark: #167a2d;
    --brand-orange: #F3762A;
    --brand-orange-dark: #d35f15;
    --ink: #1b1d1e;
    --ink-soft: #454a4e;
    --bg: #ffffff;
    --bg-soft: #f6f8f5;
    --bg-panel: #ffffff;
    --border: #e4e7e2;
    --shadow-sm: 0 1px 2px rgba(20, 40, 20, 0.06);
    --shadow-md: 0 8px 24px rgba(20, 40, 20, 0.08);
    --radius: 10px;
    --radius-lg: 16px;
    --maxw: 1120px;
    --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { min-height: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-feature-settings: "cv11", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
body > main::before,
body > main::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100% - var(--maxw)) / 2);
    background: var(--bg) url('../img/shield-pattern.svg') repeat;
    background-attachment: scroll, fixed;
    z-index: 1;
    pointer-events: none;
}
body > main::before {
    left: 0;
    box-shadow: inset -8px 0 18px -10px rgba(20, 40, 20, 0.12);
}
body > main::after {
    right: 0;
    box-shadow: inset 8px 0 18px -10px rgba(20, 40, 20, 0.12);
}
@media (max-width: 1160px) {
    body > main::before,
    body > main::after { display: none; }
}
h1, h2, h3, h4 {
    letter-spacing: -0.018em;
    line-height: 1.18;
}
body > main { flex: 1 0 auto; position: relative; }
body > .site-footer { flex-shrink: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

.skip-link {
    position: absolute; left: -9999px; top: auto;
    background: var(--brand-green); color: #fff; padding: 10px 14px; z-index: 100;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    min-height: 72px;
    gap: 12px 20px;
}
.brand img { height: 48px; width: auto; }
.site-nav { display: flex; gap: 6px; align-items: center; }
.site-nav a {
    padding: 10px 14px; border-radius: 8px;
    color: var(--ink); font-weight: 600; font-size: 0.95rem;
}
.site-nav a:hover { background: var(--bg-soft); text-decoration: none; }
.site-nav a.is-active { color: var(--brand-green-dark); background: rgba(30,158,60,0.08); }

/* Burger button */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 8px;
    background: none; border: none; cursor: pointer;
    border-radius: 8px;
}
.burger:hover { background: var(--bg-soft); }
.burger__line {
    display: block;
    width: 100%; height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .site-header__inner { flex-wrap: nowrap; gap: 8px; }
    .brand { flex-shrink: 1; min-width: 0; }
    .brand img { height: 40px; }
    .site-phone { flex-shrink: 0; }
    .burger { display: flex; flex-shrink: 0; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 2px;
        padding: 8px 16px 16px;
        border-top: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 1.05rem;
    }
    .site-nav .lang-switch {
        margin: 8px 0 0;
        align-self: flex-start;
    }
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}
.lang-switch__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 7px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    line-height: 1;
    opacity: 0.55;
    transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lang-switch__item:hover { opacity: 1; background: var(--bg-soft); text-decoration: none; }
.lang-switch__item.is-active {
    opacity: 1;
    color: var(--ink);
    background: rgba(30,158,60,0.12);
    box-shadow: inset 0 0 0 1px rgba(30,158,60,0.35);
    cursor: default;
}
.lang-switch__flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.lang-switch__item.is-active .lang-switch__flag {
    box-shadow: 0 0 0 1px rgba(30,158,60,0.45);
}
.site-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--brand-green);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.05s ease;
}
.site-phone:hover { background: var(--brand-green-dark); text-decoration: none; transform: translateY(-1px); }
.site-phone__icon { flex-shrink: 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 22px; border-radius: 10px;
    font-weight: 700; text-decoration: none;
    transition: transform 0.05s ease, box-shadow 0.15s ease, background 0.15s ease;
    border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand-orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-orange-dark); }
.btn--ghost { background: transparent; color: var(--brand-green-dark); border-color: var(--brand-green); }
.btn--ghost:hover { background: rgba(30,158,60,0.08); }

/* Hero */
.hero {
    background:
        radial-gradient(900px 500px at 85% 0%, rgba(243,118,42,0.10), transparent 60%),
        radial-gradient(1100px 600px at 5% 110%, rgba(30,158,60,0.09), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    padding: 88px 0 92px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--maxw);
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
}
.hero__inner { position: relative; z-index: 1; }
.hero__gfx-upper {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    top: 0;
    width: 100%;
    max-width: var(--maxw);
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/hero-upper.png') no-repeat top right / contain;
    -webkit-mask-image: linear-gradient(to bottom left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 30%, transparent 55%),
                        linear-gradient(to left, black 0%, black 30%, transparent 60%);
    -webkit-mask-composite: source-in;
            mask-image: linear-gradient(to bottom left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 30%, transparent 55%),
                        linear-gradient(to left, black 0%, black 30%, transparent 60%);
            mask-composite: intersect;
}
@media (max-width: 900px) {
    .hero__gfx-upper { display: none; }
}
.hero__kicker {
    display: inline-block;
    margin: 0 0 18px;
    padding: 7px 14px;
    background: rgba(30,158,60,0.12);
    color: var(--brand-green-dark);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero__title {
    margin: 0 0 20px;
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.024em;
    font-weight: 800;
    color: var(--ink);
    max-width: 22ch;
}
.hero__subtitle {
    max-width: 62ch;
    margin: 0 0 34px;
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    line-height: 1.6;
    color: var(--ink-soft);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 720px) {
    .hero { padding: 64px 0 70px; }
}

/* Sections */
.section-title {
    margin: 0 0 40px;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 14px;
}
.section-title::after {
    content: "";
    position: absolute; bottom: 0; left: 0;
    width: 64px; height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
    border-radius: 2px;
}

.features { padding: 70px 0; background: #fff; }
.features__grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature {
    background: var(--bg-panel);
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature h3 { margin: 6px 0 10px; color: var(--brand-green-dark); }
.feature p { margin: 0; color: var(--ink-soft); }
.feature__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(30,158,60,0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    position: relative;
}
.feature__icon::before {
    content: ""; position: absolute; inset: 10px;
    background: var(--brand-green);
    -webkit-mask: no-repeat center / contain;
            mask: no-repeat center / contain;
}
.feature__icon--check::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
}
.feature__icon--shield::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M12 2 4 5v6c0 5 3.4 9.5 8 11 4.6-1.5 8-6 8-11V5z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M12 2 4 5v6c0 5 3.4 9.5 8 11 4.6-1.5 8-6 8-11V5z'/></svg>");
}
.feature__icon--chat::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M4 4h16v12H7l-3 3z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M4 4h16v12H7l-3 3z'/></svg>");
}

.services-subnav {
    position: sticky;
    top: 72px;
    z-index: 15;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.services-subnav .container {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.services-subnav__item {
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink-soft);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.services-subnav__item:hover {
    color: var(--ink);
    text-decoration: none;
}
.services-subnav__item.is-active {
    color: var(--brand-green-dark);
    border-bottom-color: var(--brand-green);
}
.services-preview { padding: 70px 0; background: var(--bg-soft); }
.services { padding: 60px 0 90px; background: #fff; }

.services-category {
    margin: 46px 0 18px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-green-dark);
    letter-spacing: 0.01em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-green);
    scroll-margin-top: 140px;
}
.services-category:first-of-type { margin-top: 10px; }
.services-grid {
    list-style: none; margin: 0 0 30px; padding: 0;
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.services-grid > li { display: flex; }
.service-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 36px 26px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.service-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-green);
    text-decoration: none;
}
.service-tile:hover .service-tile__title { color: var(--brand-green-dark); }
.service-tile__img {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.service-tile:hover .service-tile__img { transform: scale(1.04); }
.service-tile__title {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.15s ease;
}
.service-tile__excerpt {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}
.service-card {
    background: #fff;
    padding: 26px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-green);
}
.service-card h3 { margin: 0 0 8px; font-size: 1.08rem; color: var(--brand-green-dark); }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover { text-decoration: underline; }
.service-card__more { margin-top: 10px; font-size: 0.9rem; }
.service-card__more a { color: var(--brand-orange-dark); font-weight: 600; }

/* Single-service article */
.service-article { display: block; }
.service-article__header {
    background:
        radial-gradient(1100px 460px at 12% -10%, rgba(30, 158, 60, 0.10), transparent 60%),
        radial-gradient(900px 420px at 108% -20%, rgba(243, 118, 42, 0.08), transparent 60%),
        linear-gradient(180deg, #f8faf6 0%, #ffffff 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.service-article__header > .container { position: relative; z-index: 1; }
.service-article__header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--maxw);
    height: 1px;
    background: var(--border);
}
.service-article__kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 22px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}
.service-article__kicker a {
    color: var(--brand-green-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s ease, transform 0.15s ease;
}
.service-article__kicker a:hover { color: var(--brand-orange-dark); }
.service-article__kicker a:hover .service-article__kicker-arrow { transform: translateX(-2px); }
.service-article__kicker-arrow { transition: transform 0.15s ease; }
.service-article__tag {
    position: relative;
    padding-left: 16px;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}
.service-article__tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--ink-soft);
}
.service-article__title {
    margin: 0 0 20px;
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.018em;
    color: var(--ink);
    max-width: 24ch;
}
.service-article__lead {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    font-weight: 400;
}
.service-article__main { padding: 64px 0 96px; background: #fff; }
.service-article__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.service-article__grid--with-image {
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: start;
}
.service-article__aside { min-width: 0; }
.service-article__figure {
    margin: 0;
    position: sticky;
    top: 104px;
}
.service-article__figure-shape {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-article__figure-shape img {
    display: block;
    max-width: 100%;
    max-height: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.service-article__body {
    min-width: 0;
    max-width: 64ch;
    font-size: 1.075rem;
    line-height: 1.78;
    color: var(--ink);
}
.service-article__body p { margin: 0 0 1.2em; }
.service-article__body p:last-child { margin-bottom: 0; }
.service-article__body p:first-child { position: relative; padding-top: 4px; }
.service-article__body p:first-child::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 16px;
    width: 14px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 1px;
}
@media (max-width: 900px) {
    .service-article__header { padding: 52px 0 40px; }
    .service-article__title { font-size: 2rem; max-width: none; }
    .service-article__lead { font-size: 1.08rem; }
    .service-article__main { padding: 40px 0 64px; }
    .service-article__grid--with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-article__figure { position: static; max-width: 240px; }
    .service-article__body p:first-child::before { display: none; }
}

/* Page head */
.page-head {
    background: linear-gradient(180deg, var(--bg-soft), #fff);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}
.page-head > .container { position: relative; z-index: 1; }
.page-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--maxw);
    height: 1px;
    background: var(--border);
}
.page-head h1 { margin: 0 0 8px; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.page-head .lead { margin: 0; font-size: 1.1rem; color: var(--ink-soft); max-width: 720px; }

/* About */
.about { padding: 60px 0 90px; }
.about__grid { display: grid; gap: 40px; grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr); }
.about__text p { font-size: 1.05rem; color: var(--ink-soft); }
.about__hours {
    background: var(--bg-soft);
    padding: 24px;
    border-left: 4px solid var(--brand-green);
    border-radius: var(--radius);
}
.about__hours h2 { margin: 0 0 12px; font-size: 1.1rem; color: var(--brand-green-dark); }
.about__hours ul { list-style: none; padding: 0; margin: 0; color: var(--ink-soft); }
.about__hours li + li { margin-top: 6px; }
@media (max-width: 720px) { .about__grid { grid-template-columns: 1fr; } }

/* Contact */
.contact { padding: 50px 0 90px; }
.contact__grid {
    display: grid; gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__info h2 { margin: 22px 0 6px; font-size: 1rem; color: var(--brand-green-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.contact__info p { margin: 0; color: var(--ink-soft); }
.map { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map iframe { width: 100%; height: 280px; border: 0; display: block; }

.contact__form {
    background: #fff;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
}
.contact__form h2 { margin: 0 0 4px; font-size: 1.35rem; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.92rem; color: var(--ink-soft); }
.contact__form .req { color: #c41e1e; font-weight: 700; }
.contact__form input,
.contact__form textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(30,158,60,0.18);
}
.contact__form .error { color: #b3261e; font-size: 0.85rem; }
.contact__form button { align-self: flex-start; }

.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.alert { padding: 12px 14px; border-radius: 8px; font-size: 0.95rem; }
.alert--error { background: #fdecec; color: #a11818; border: 1px solid #f4baba; }

.success { padding: 60px 0 100px; }

/* Footer */
.site-footer {
    background: #0f1412;
    color: #c9d2cc;
    padding: 40px 0 28px;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--brand-green), var(--brand-orange)) 1;
    position: relative;
    overflow: hidden;
}
.site-footer__gfx {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: var(--maxw);
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/hero-lower.png') no-repeat bottom right / contain;
    opacity: 0.25;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to top left, black 0%, rgba(0,0,0,0.4) 30%, transparent 55%);
            mask-image: linear-gradient(to top left, black 0%, rgba(0,0,0,0.4) 30%, transparent 55%);
}
@media (max-width: 900px) {
    .site-footer__gfx { display: none; }
}
.site-footer a { color: #fff; }
.site-footer__inner { display: grid; gap: 14px; }
.site-footer__brand { font-size: 1.05rem; color: #fff; }
.site-footer__address { font-style: normal; }
.site-footer__copy { font-size: 0.85rem; color: #8a9491; line-height: 1.8; }
.site-footer__credit a { color: #c0c7c3; text-decoration: none; border-bottom: 1px dotted #6a7470; }
.site-footer__credit a:hover { color: #fff; border-bottom-color: #fff; }
