:root {
    --ink: #151a1c;
    --muted: #566164;
    --green: #49663a;
    --green-strong: #75d66b;
    --line: rgba(72, 84, 86, .24);
    --panel: rgba(231, 236, 236, .74);
    --wall: #c9d1d2;
    --wall-light: #dce2e2;
    --wall-mid: #c4cccd;
    --wall-dark: #aeb8ba;
    --blue: #31a7ff;
    --amber: #ffbe3d;
    --clay: #ff763d;
    --shadow: 0 18px 45px rgba(34, 45, 45, .13);
    --cat-garden: #5fa83d;
    --cat-clean: #2896a8;
    --cat-masonry: #b76b3b;
    --cat-maintenance: #58788f;
    --cat-general: #49663a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .38), transparent 24rem),
        radial-gradient(circle at 88% 18%, rgba(73, 102, 58, .09), transparent 22rem),
        linear-gradient(180deg, var(--wall-light) 0%, var(--wall) 42%, var(--wall-mid) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image: linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(rgba(42, 54, 55, .045) 1px, transparent 1px);
    background-size: 72px 72px;
}

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

.icon {
    width: 1.2em;
    height: 1.2em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.icon-image {
    display: inline-block;
    object-fit: contain;
    stroke: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.4rem;
    min-height: 82px;
    padding: 0 3.2vw;
    border-bottom: 1px solid var(--line);
    background: rgba(196, 204, 205, .92);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: clamp(230px, 23vw, 380px);
    height: 70px;
    min-width: 0;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 .25rem .7rem rgba(88, 178, 54, .22));
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .92rem;
}

.main-nav a {
    padding: 1.95rem .1rem 1.65rem;
    border-bottom: 3px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 44px;
    padding: .75rem 1.25rem;
    border: 1px solid var(--green);
    border-radius: 6px;
    color: #26351f;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .88rem;
    background: rgba(226, 232, 232, .56);
    white-space: nowrap;
}

.header-cta .icon,
.btn .icon {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin: 0;
    align-self: center;
}

.btn.primary {
    color: #fff;
    background: var(--green);
    box-shadow: 0 12px 24px rgba(73, 107, 50, .24);
}

.btn.ghost,
.btn.outline {
    background: rgba(225, 231, 231, .66);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--green);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(232, 237, 237, .5);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
    gap: 5vw;
    min-height: 530px;
    padding: clamp(3rem, 7vw, 7rem) 8vw 3rem;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    width: 18rem;
    height: 22rem;
    background:
        linear-gradient(90deg, transparent 46%, rgba(39, 71, 27, .35) 47% 53%, transparent 54%),
        radial-gradient(ellipse at bottom, #172316 0 18%, transparent 19%),
        repeating-linear-gradient(104deg, transparent 0 14px, rgba(39, 71, 27, .62) 15px 18px, transparent 19px 34px);
    opacity: .62;
}

.hero::before {
    left: -7rem;
}

.hero::after {
    right: -7rem;
    transform: scaleX(-1);
}

.hero-copy,
.hero-sign {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

.hero p {
    margin: 1.25rem 0 1.6rem;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-row {
    display: grid;
    grid-template-columns: minmax(8.6rem, 1fr) minmax(11.4rem, 1.25fr) minmax(8.6rem, 1fr);
    width: min(100%, 680px);
    gap: clamp(.85rem, 1.35vw, 1.35rem);
    align-items: start;
}

.trust-row {
    margin-top: 2.1rem;
}

.trust-row div {
    display: grid;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    column-gap: .72rem;
    row-gap: .18rem;
    align-items: start;
    min-width: 0;
    color: var(--green);
}

.trust-row .icon {
    grid-row: span 2;
    width: 2.1rem;
    height: 2.1rem;
}

.trust-row strong {
    color: var(--ink);
    font-size: clamp(.78rem, .78vw, .9rem);
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-row span {
    color: #202529;
    font-size: clamp(.76rem, .76vw, .84rem);
    line-height: 1.25;
}

.hero-sign {
    align-self: center;
    justify-self: end;
    width: min(100%, 760px);
    padding: 0;
    color: #eaffea;
    text-align: center;
    text-transform: uppercase;
    filter: drop-shadow(0 16px 22px rgba(22, 34, 29, .2)) drop-shadow(0 0 18px rgba(123, 255, 123, .32));
    transform: translateX(1.6vw) translateY(-.4rem);
}

.logo-art img {
    display: block;
    width: min(100%, 735px);
    height: auto;
    margin: 0 auto;
}

.hero.hero-image {
    display: block;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(220, 226, 226, .96) 0%, rgba(202, 210, 211, .9) 42%, rgba(188, 197, 198, .72) 100%),
        var(--wall-mid);
}

.hero.hero-image::before,
.hero.hero-image::after {
    display: none;
}

.hero-image > img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-composite {
    aspect-ratio: 2171 / 724;
    height: auto;
    min-height: 0;
    --hero-logo-top: 43%;
    --hero-logo-right: 20%;
    --hero-logo-width: min(30vw, 540px);
}

.hero.hero-image.hero-composite::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    background:
        radial-gradient(ellipse 34% 58% at 18% 42%, rgba(78, 91, 86, .28) 0%, rgba(78, 91, 86, .16) 48%, transparent 78%),
        linear-gradient(90deg, rgba(87, 98, 94, .34) 0%, rgba(112, 124, 120, .18) 34%, rgba(196, 204, 205, .04) 58%, transparent 100%);
}

.hero-composite .hero-bg-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: var(--wall-mid);
}

.hero-composite .hero-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
}

.hero-composite .hero-logo-layer {
    display: block;
    position: absolute;
    top: var(--hero-logo-top);
    right: var(--hero-logo-right);
    z-index: 2;
    width: var(--hero-logo-width);
    max-height: none;
    height: auto;
    object-fit: contain;
    transform: translateY(-50%);
    pointer-events: none;
    filter:
        drop-shadow(0 1.45rem 1.25rem rgba(41, 48, 29, .2))
        drop-shadow(0 .35rem .18rem rgba(41, 48, 29, .1));
}

.hero-composite .hero-copy {
    position: absolute;
    left: 12%;
    top: 14%;
    z-index: 3;
    width: min(31%, 540px);
}

.hero-composite .hero h1,
.hero-composite h1 {
    font-size: clamp(2.35rem, 3vw, 4.35rem);
    line-height: 1.03;
}

.hero-composite .hero-actions {
    display: flex;
    align-items: center;
    width: auto;
    grid-template-columns: none;
    gap: .9rem;
}

.hero-composite .hero-actions .btn {
    min-height: 48px;
    padding: .82rem 1.35rem;
    line-height: 1;
    white-space: nowrap;
}

.hero-composite .trust-row {
    position: absolute;
    left: 12%;
    top: 72%;
    z-index: 3;
    width: min(30%, 610px);
    margin-top: 0;
    padding: .82rem .95rem;
    border: 1px solid rgba(73, 102, 58, .16);
    border-radius: 8px;
    background: rgba(220, 226, 226, .66);
    box-shadow: 0 .9rem 2rem rgba(18, 28, 22, .08);
    backdrop-filter: blur(4px);
}

.hero-hotspot {
    position: absolute;
    z-index: 3;
    display: block;
    overflow: hidden;
    color: transparent;
    border-radius: 6px;
}

.hero-hotspot:focus-visible {
    outline: 3px solid rgba(117, 214, 107, .95);
    outline-offset: 4px;
}

.hero-hotspot.services {
    left: 10.5%;
    top: 65%;
    width: 12%;
    height: 10.5%;
}

.hero-hotspot.contact {
    left: 23.7%;
    top: 65%;
    width: 9.3%;
    height: 10.5%;
}

.neon-arc,
.neon-main,
.neon-ribbon {
    border: 3px solid #9af896;
    box-shadow: 0 0 7px #8cff86, 0 0 22px rgba(111, 241, 107, .85), inset 0 0 15px rgba(111, 241, 107, .4);
    text-shadow: 0 0 8px #c7ffc5;
    background: rgba(46, 70, 48, .22);
}

.neon-arc {
    width: 76%;
    margin: 0 auto -.2rem;
    padding: .35rem .8rem;
    font-size: clamp(.62rem, 1.4vw, 1rem);
    border-bottom: 0;
    border-radius: 100% 100% 0 0;
    transform: rotate(-8deg);
}

.neon-main {
    padding: .7rem .9rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    border-radius: 10px;
}

.neon-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: .35rem 0;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1;
}

.neon-icons span:nth-child(1) { color: var(--amber); text-shadow: 0 0 12px var(--amber); }
.neon-icons span:nth-child(2) { color: #b7ffb2; text-shadow: 0 0 12px #a2ff9d; }
.neon-icons span:nth-child(3) { color: var(--blue); text-shadow: 0 0 12px var(--blue); }
.neon-icons span:nth-child(4) { color: var(--clay); text-shadow: 0 0 12px var(--clay); }

.neon-ribbon {
    display: inline-block;
    padding: .45rem .9rem;
    font-size: clamp(.85rem, 2vw, 1.35rem);
    border-radius: 9px;
}

.neon-since {
    color: #f7fff4;
    font-size: 1.25rem;
    font-style: italic;
    text-shadow: 0 0 9px #9dff9b;
    text-transform: none;
}

.section,
.content-band,
.contact-layout,
.gallery-grid {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 1.3rem 0 2.5rem;
}

.section,
.overview,
.page-hero {
    content-visibility: auto;
    contain-intrinsic-size: 1px 620px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    margin: 0 0 1rem;
    text-align: center;
    white-space: nowrap;
}

.section-title h2,
.overview h2,
.content-band h2,
.contact-info h2,
.detail-card h2,
.reference-card h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.2;
    text-transform: uppercase;
}

.overview h2 {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    white-space: nowrap;
}

.section-title .icon {
    color: var(--green);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

.service-card,
.detail-card,
.reference-card,
.contact-form,
.contact-info,
.values-panel {
    border: 1px solid rgba(249, 252, 252, .62);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 1px 0 rgba(255,255,255,.64) inset, var(--shadow);
}

.category-garden {
    --category-accent: var(--cat-garden);
    --category-soft: rgba(95, 168, 61, .16);
}

.category-clean {
    --category-accent: var(--cat-clean);
    --category-soft: rgba(40, 150, 168, .15);
}

.category-masonry {
    --category-accent: var(--cat-masonry);
    --category-soft: rgba(183, 107, 59, .15);
}

.category-maintenance {
    --category-accent: var(--cat-maintenance);
    --category-soft: rgba(88, 120, 143, .16);
}

.category-general {
    --category-accent: var(--cat-general);
    --category-soft: rgba(73, 102, 58, .14);
}

.service-card,
.detail-card,
.reference-card,
.team-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.detail-card::before,
.reference-card::before,
.team-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--category-accent, var(--green));
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 238px;
    padding: 1.55rem .9rem;
    text-align: center;
}

.service-card > .icon {
    width: 3.6rem;
    height: 3.6rem;
    color: var(--category-accent, var(--green));
    padding: .58rem;
    border-radius: 8px;
    background: var(--category-soft, rgba(73, 102, 58, .14));
}

.service-card > .icon-image,
.detail-card > .icon-image,
.service-single-hero > div > .icon-image {
    width: 3.8rem;
    height: 3.8rem;
}

.service-card > .icon-image,
.detail-card > .icon-image {
    padding: .55rem;
    border-radius: 8px;
    background: var(--category-soft, rgba(73, 102, 58, .14));
    transition: transform .18s ease, filter .18s ease;
}

.service-card:hover > .icon,
.service-card:hover > .icon-image,
.detail-card:hover > .icon,
.detail-card:hover > .icon-image {
    transform: translateY(-2px) scale(1.04);
}

.category-garden .icon-image {
    filter: brightness(.78) sepia(1) saturate(2.6) hue-rotate(48deg);
}

.category-clean .icon-image {
    filter: brightness(.82) sepia(1) saturate(2.4) hue-rotate(135deg);
}

.category-masonry .icon-image {
    filter: brightness(.82) sepia(1) saturate(2.9) hue-rotate(345deg);
}

.category-maintenance .icon-image {
    filter: brightness(.72) sepia(1) saturate(1.65) hue-rotate(165deg);
}

.service-card h3 {
    margin: .9rem 0 .45rem;
    font-size: .98rem;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-card p {
    margin: 0 0 auto;
    color: #202529;
    font-size: .92rem;
    min-height: 4.4em;
}

.service-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    color: var(--category-accent, var(--green));
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.category-badge {
    display: inline-flex;
    width: fit-content;
    margin: .8rem 0 .35rem;
    padding: .35rem .58rem;
    color: var(--category-accent, var(--green));
    font-size: .76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 999px;
    background: var(--category-soft, rgba(73, 102, 58, .14));
}

.service-card a .icon,
.text-link .icon {
    width: 1rem;
}

.overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.55rem;
    padding: 1.6rem 8vw;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(193, 202, 203, .72);
}

.overview > div {
    min-width: 0;
    padding-right: 1.1rem;
    border-right: 1px solid var(--line);
}

.overview > div:last-child {
    border-right: 0;
}

.overview p,
.content-band p,
.contact-info p,
.detail-card p {
    color: #202529;
}

.check-list,
.contact-list,
.detail-card ul {
    padding: 0;
    margin: 1rem 0;
    list-style: none;
}

.check-list li,
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin: .6rem 0;
}

.overview .contact-list li {
    gap: .55rem;
    font-size: .92rem;
    line-height: 1.25;
    white-space: nowrap;
}

.check-list .icon,
.contact-list .icon {
    color: var(--green);
    margin-top: .16rem;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin: 1rem 0;
}

.mini-reference-slider {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.mini-reference-track {
    display: flex;
    gap: .5rem;
    will-change: transform;
    transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.mini-reference-track .mini-gallery-item {
    flex: 0 0 calc((100% - 1rem) / 3);
    transition: transform .28s ease, filter .28s ease;
}

.mini-reference-track .mini-gallery-item:hover {
    filter: saturate(1.08) contrast(1.04);
    transform: translateY(-2px);
}

.faq-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.faq-grid details {
    padding: 1rem;
    border: 1px solid rgba(249, 252, 252, .62);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 1px 0 rgba(255,255,255,.64) inset, var(--shadow);
}

.faq-grid summary {
    color: var(--ink);
    font-weight: 950;
    cursor: pointer;
}

.faq-grid p {
    margin: .7rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.mini-gallery-item,
.reference-image,
.gallery-item {
    background:
        linear-gradient(135deg, rgba(43, 57, 49, .22), rgba(235, 240, 240, .2)),
        repeating-linear-gradient(90deg, rgba(73, 102, 58, .58) 0 10px, rgba(182, 192, 180, .78) 10px 18px, rgba(66, 82, 73, .66) 18px 28px);
}

.mini-gallery-item {
    min-height: 80px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transform: translateZ(0);
}

.gallery-item[data-bg],
.reference-image[data-bg],
.mini-gallery-item[data-bg] {
    background-position: center;
    background-size: cover;
}

.gallery-item.is-loaded,
.reference-image.is-loaded,
.mini-gallery-item.is-loaded {
    transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.mini-gallery-item span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 8vw;
    font-size: .9rem;
    border-top: 1px solid var(--line);
}

.footer-links {
    display: flex;
    gap: 2.4rem;
}

.page-hero {
    padding: clamp(3.5rem, 7vw, 6rem) 8vw;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(237, 242, 242, .6), transparent),
        radial-gradient(circle at 82% 28%, rgba(73, 102, 58, .12), transparent 20rem),
        linear-gradient(180deg, var(--wall-light), var(--wall-mid));
}

.page-hero.compact {
    min-height: 240px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 1;
    text-transform: uppercase;
}

.service-single-hero .icon {
    width: 3.4rem;
    height: 3.4rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.service-single-hero .hero-actions {
    gap: .65rem;
}

.service-single-hero .btn {
    min-height: 36px;
    padding: .5rem .85rem;
    gap: .45rem;
    font-size: .76rem;
}

.service-single-hero .btn .icon {
    width: 1rem;
    height: 1rem;
    margin-bottom: 0;
}

.service-feature-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, .8fr);
    width: min(1180px, calc(100% - 2rem));
    min-height: clamp(300px, 30vw, 420px);
    margin: 1.25rem auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: var(--wall);
    box-shadow: 0 1.4rem 3rem rgba(37, 45, 41, .12);
}

.service-feature-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(18, 24, 21, .04), rgba(18, 24, 21, .1)),
        linear-gradient(90deg, transparent 0%, rgba(229, 235, 233, .12) 48%, rgba(229, 235, 233, .9) 68%, rgba(229, 235, 233, .96) 100%);
}

.service-feature-band img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center center;
}

.service-feature-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .85rem;
    padding: clamp(1.5rem, 3vw, 3rem);
    background:
        linear-gradient(135deg, rgba(246, 249, 247, .9), rgba(218, 226, 223, .82)),
        var(--category-soft, rgba(73, 102, 58, .12));
}

.service-feature-content span {
    width: fit-content;
    padding: .4rem .7rem;
    color: var(--category-accent, var(--green));
    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
}

.service-feature-content h2 {
    max-width: 12em;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.service-feature-content p {
    max-width: 34rem;
    margin: 0;
    color: #26302d;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.6;
}

.service-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .35rem;
}

.service-feature-actions .btn {
    min-height: 38px;
    padding: .55rem .9rem;
    gap: .45rem;
    font-size: .78rem;
}

.service-feature-actions .btn .icon {
    width: 1rem;
    height: 1rem;
    margin-bottom: 0;
}

.page-hero p {
    max-width: 720px;
    margin: 1rem 0 0;
    font-size: 1.15rem;
}

.content-band {
    padding: 2.6rem 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: start;
}

.values-panel,
.contact-info,
.contact-form {
    padding: 1.5rem;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 auto 2rem;
    width: min(1180px, calc(100% - 2rem));
    border: 1px solid var(--line);
}

.stats-strip div {
    display: grid;
    place-items: center;
    min-height: 120px;
    padding: 1rem;
    text-align: center;
    background: rgba(228, 234, 234, .5);
}

.stats-strip strong {
    color: var(--green);
    font-size: 2.4rem;
    line-height: 1;
}

.service-detail-grid,
.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.detail-card {
    padding: 1.45rem;
}

.detail-card > .icon {
    width: 3rem;
    height: 3rem;
    color: var(--category-accent, var(--green));
    padding: .48rem;
    border-radius: 8px;
    background: var(--category-soft, rgba(73, 102, 58, .14));
}

.detail-card ul {
    padding-left: 1.1rem;
    list-style: disc;
}

.team-section {
    padding-top: 2.5rem;
}

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

.team-card {
    overflow: hidden;
    border: 1px solid rgba(249, 252, 252, .62);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.team-card img,
.team-card-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: rgba(228, 234, 234, .72);
}

.team-card-placeholder {
    display: grid;
    place-items: center;
    color: var(--category-accent, var(--green));
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,.8), transparent 34%),
        var(--category-soft, rgba(73, 102, 58, .14));
}

.team-card-placeholder .icon {
    width: 3rem;
    height: 3rem;
}

.team-card div {
    padding: .85rem;
}

.team-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.2;
}

.team-card p {
    margin: .3rem 0 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.35;
}

.team-card .category-badge {
    margin-top: .7rem;
}

.service-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 920px;
    margin: 0 auto;
}

.seo-link-band {
    margin-top: 1.2rem;
    padding: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(238, 242, 242, .68);
}

.seo-link-band h2 {
    width: 100%;
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
}

.seo-link-band a {
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}

.reference-card {
    overflow: hidden;
}

.reference-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .45rem;
    padding: .55rem;
}

.reference-image {
    min-height: 112px;
    padding: .65rem;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font: inherit;
    font-weight: 800;
    text-align: left;
    box-shadow: none;
    cursor: pointer;
}

.reference-image:first-child {
    grid-column: 1 / -1;
    min-height: 210px;
}

.reference-card div:last-child {
    padding: 1.25rem;
}

.reference-card span:not(.category-badge) {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
}

.reference-description {
    margin-top: .75rem;
    color: var(--muted);
    line-height: 1.65;
}

.tone-2,
.gallery-2,
.gallery-5,
.gallery-8 {
    background:
        linear-gradient(135deg, rgba(67, 78, 82, .24), rgba(235, 240, 240, .2)),
        repeating-linear-gradient(0deg, #b7c0c1 0 16px, #697c64 16px 22px, #c9d1c4 22px 34px);
}

.tone-3,
.gallery-3,
.gallery-6,
.gallery-9 {
    background:
        linear-gradient(135deg, rgba(55, 82, 73, .22), rgba(235, 240, 240, .2)),
        repeating-linear-gradient(90deg, #c4cccd 0 18px, #50616a 18px 30px, #7f9863 30px 38px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 0 3rem;
}

.filter-bar {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
}

.filter-bar button {
    min-height: 40px;
    padding: .62rem .9rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--green);
    font: inherit;
    font-weight: 800;
    background: rgba(238, 242, 242, .72);
    cursor: pointer;
}

.filter-bar button.active {
    color: #fff;
    border-color: var(--green);
    background: var(--green);
}

.gallery-filter {
    margin-top: 1.5rem;
}

.gallery-slider {
    position: relative;
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 4.8rem 3rem;
}

.gallery-slider-stage {
    position: relative;
    min-height: 590px;
}

.gallery-item {
    position: relative;
    min-height: 240px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    text-align: left;
    box-shadow: var(--shadow);
    cursor: pointer;
    background-position: center;
    background-size: cover;
}

.gallery-item.has-image {
    background-position: center;
    background-size: cover;
}

.gallery-slider .gallery-item {
    position: absolute;
    inset: 0;
    display: none;
    width: 100%;
    min-height: 520px;
    overflow: visible;
}

.gallery-slider .gallery-item.active {
    display: block;
}

.gallery-slider .gallery-item span {
    position: absolute;
    top: calc(100% + .7rem);
    left: 0;
    right: 0;
    display: block;
    padding: .65rem .8rem;
    color: var(--ink);
    line-height: 1.25;
    overflow-wrap: anywhere;
    border: 1px solid rgba(72, 84, 86, .16);
    border-radius: 7px;
    background: rgba(238, 242, 242, .9);
    box-shadow: 0 1px 0 rgba(255,255,255,.64) inset, 0 12px 22px rgba(38, 49, 47, .08);
}

.gallery-slider .gallery-item span small {
    display: block;
    margin-top: .25rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.35;
}

.reference-gallery .reference-image {
    min-height: 112px;
    box-shadow: none;
}

.reference-gallery .reference-image:first-child {
    min-height: 210px;
}

.gallery-slider-nav {
    position: absolute;
    top: calc(2rem + 260px);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--green);
    font-size: 3rem;
    line-height: 1;
    border: 1px solid rgba(73, 102, 58, .42);
    border-radius: 50%;
    background: rgba(220, 226, 226, .88);
    box-shadow: var(--shadow);
    cursor: pointer;
    transform: translateY(-50%);
}

.gallery-slider-nav.prev {
    left: 0;
}

.gallery-slider-nav.next {
    right: 0;
}

.gallery-slider-count {
    margin-top: .85rem;
    color: var(--green);
    font-weight: 800;
    text-align: center;
}

.mini-gallery .mini-gallery-item {
    min-height: 80px;
    height: 80px;
    padding: 0;
    color: transparent;
    font-size: 0;
    text-align: initial;
}

.mini-gallery .mini-gallery-item span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    background: transparent;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    place-items: center;
    padding: 2rem;
    background: rgba(10, 14, 12, .72);
}

.lightbox.open {
    display: grid;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox [data-lightbox-close] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.lightbox-frame {
    display: grid;
    place-items: center;
    gap: .85rem;
    width: fit-content;
    max-width: 96vw;
    max-height: calc(100vh - 5rem);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.lightbox-frame.has-image {
    text-shadow: none;
}

.lightbox-visual {
    display: block;
    width: min(820px, 90vw);
    min-height: 430px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(23,35,22,.25), rgba(255,255,255,.16)),
        repeating-linear-gradient(90deg, #50683d 0 24px, #c0ca9b 24px 46px, #2f4535 46px 70px);
    background-position: center;
    background-size: cover;
}

img.lightbox-visual {
    width: auto;
    min-height: 0;
    max-width: 96vw;
    max-height: calc(100vh - 5.5rem);
    object-fit: contain;
    background: transparent;
}

.lightbox-caption {
    max-width: 96vw;
    padding: .55rem .9rem;
    color: #f3fff0;
    text-align: center;
    border: 1px solid rgba(147, 255, 138, .36);
    border-radius: 999px;
    background: rgba(18, 30, 22, .72);
}

.lightbox-counter {
    position: absolute;
    right: max(1rem, calc((100vw - 940px) / 2));
    bottom: 1rem;
    z-index: 2;
    padding: .35rem .7rem;
    color: #f3fff0;
    font-weight: 800;
    border: 1px solid rgba(147, 255, 138, .42);
    border-radius: 999px;
    background: rgba(18, 30, 22, .72);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #f3fff0;
    font-size: 3rem;
    line-height: 1;
    border: 1px solid rgba(147, 255, 138, .6);
    border-radius: 50%;
    background: rgba(18, 30, 22, .66);
    box-shadow: 0 0 14px rgba(117, 214, 107, .3);
    cursor: pointer;
    transform: translateY(-50%);
}

.lightbox-nav.prev {
    left: max(1rem, calc((100vw - 940px) / 2));
}

.lightbox-nav.next {
    right: max(1rem, calc((100vw - 940px) / 2));
}

.lightbox-nav:hover,
.lightbox [data-lightbox-close]:hover {
    color: #fff;
    border-color: rgba(147, 255, 138, .95);
    box-shadow: 0 0 18px rgba(117, 214, 107, .48);
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 1.4rem;
    padding: 2rem 0 3rem;
}

.contact-list.large {
    font-size: 1.08rem;
}

.contact-info h3 {
    margin: 1.35rem 0 .65rem;
    color: var(--green);
    font-size: 1rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.contact-list + .contact-list {
    margin-top: .65rem;
}

.contact-list strong {
    color: var(--ink);
}

.muted {
    color: var(--muted);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: .4rem;
    color: #29302d;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: .75rem .85rem;
    color: var(--ink);
    font: inherit;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(238, 242, 242, .72);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input[type="file"] {
    padding: .65rem;
    background: rgba(238, 242, 242, .58);
}

.file-field span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.35;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    width: 44px;
    height: 44px;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: #fff;
    font: inherit;
    font-weight: 900;
    background: var(--green);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(.5rem);
    transition: opacity .2s ease, transform .2s ease;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.honeypot {
    position: absolute;
    left: -10000px;
}

.flash {
    grid-column: 1 / -1;
    padding: .85rem 1rem;
    border-radius: 6px;
    font-weight: 700;
}

.flash.success {
    color: #183816;
    background: rgba(117, 214, 107, .22);
    border: 1px solid rgba(73, 107, 50, .38);
}

.flash.error {
    color: #5f1b12;
    background: rgba(255, 118, 61, .16);
    border: 1px solid rgba(255, 118, 61, .42);
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .main-nav.open {
        display: grid;
        grid-column: 1 / -1;
        justify-content: stretch;
        gap: 0;
        padding-bottom: 1rem;
    }

    .main-nav.open a {
        padding: .85rem 0;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-composite .hero-copy {
        left: 6%;
        top: 16%;
        width: 42%;
    }

    .hero-composite .hero-logo-layer {
        right: clamp(1rem, 3vw, 2rem);
        width: min(44vw, 520px);
    }

    .hero-sign {
        max-width: 720px;
        justify-self: center;
        transform: none;
    }

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

    .team-grid,
    .service-team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .overview > div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 1100px) and (min-width: 761px) {
    .hero.hero-image.hero-composite::before {
        display: block;
        background:
            linear-gradient(180deg, rgba(190, 199, 200, .16) 0%, rgba(207, 214, 214, .28) 64%, rgba(220, 226, 226, .96) 100%);
    }

    .hero-composite {
        display: block;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .hero-composite .hero-bg-picture {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 2171 / 724;
    }

    .hero-composite .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: fill;
        object-position: center center;
    }

    .hero-composite .hero-logo-layer {
        top: calc((100vw * 724 / 2171) * .47);
        left: auto;
        right: clamp(1rem, 4vw, 3rem);
        width: min(40vw, 440px);
        max-width: none;
        height: auto;
        object-fit: contain;
        transform: translateY(-50%);
    }

    .hero-composite .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        padding: 1.65rem 6vw 1.25rem;
        background:
            linear-gradient(180deg, rgba(220, 226, 226, .96), rgba(196, 204, 205, .9)),
            var(--wall);
        border-top: 1px solid rgba(72, 84, 86, .18);
    }

    .hero-composite .trust-row {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1rem 6vw;
        border-radius: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 70px;
        padding: .65rem 1rem;
        gap: .75rem;
    }

    .brand {
        width: min(58vw, 230px);
        height: 54px;
    }

    .hero {
        padding: 2.4rem 1rem;
    }

    .hero.hero-image {
        padding: 0;
    }

    .page-hero {
        padding: 2.6rem 1rem;
    }

    .page-hero.compact {
        min-height: 190px;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.55rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .page-hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero.hero-image::before,
    .hero.hero-image::after {
        display: none;
    }

    .hero.hero-image.hero-composite::before {
        display: block;
        background:
            linear-gradient(180deg, rgba(190, 199, 200, .18) 0%, rgba(207, 214, 214, .32) 62%, rgba(220, 226, 226, .98) 100%);
    }

    .hero-composite .hero-bg-picture {
        position: relative;
        display: block;
        width: 100%;
        height: clamp(380px, 105vw, 540px);
        aspect-ratio: 1672 / 941;
    }

    .hero-composite .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-composite .hero-logo-layer {
        top: clamp(175px, 46vw, 245px);
        left: 50%;
        right: auto;
        width: min(82vw, 380px);
        max-width: none;
        height: auto;
        object-fit: contain;
        transform: translate(-50%, -50%);
        filter: drop-shadow(0 .55rem .9rem rgba(18, 28, 22, .18));
    }

    .hero-composite {
        display: block;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .hero-composite .hero-copy {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: auto;
        padding: 1.35rem 1rem 1.55rem;
        background:
            linear-gradient(180deg, rgba(220, 226, 226, .96), rgba(196, 204, 205, .9)),
            var(--wall);
        border-top: 1px solid rgba(72, 84, 86, .18);
    }

    .hero-composite h1 {
        max-width: 22rem;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.04;
    }

    .hero-composite p {
        margin: .85rem 0 1rem;
        max-width: 24rem;
        font-size: 1rem;
        line-height: 1.45;
    }

    .hero-composite .hero-actions {
        gap: .65rem;
    }

    .hero-composite .btn {
        min-height: 42px;
        padding: .72rem .9rem;
        font-size: .8rem;
    }

    .hero-composite .trust-row {
        position: static;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: .8rem;
        margin: 0;
        padding: .95rem 1rem;
        border-radius: 0;
    }

    .hero-composite .trust-row div {
        grid-template-columns: 2rem minmax(0, 1fr);
        column-gap: .7rem;
    }

    .hero-composite .trust-row .icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .hero-composite .trust-row strong {
        font-size: .88rem;
    }

    .hero-composite .trust-row span {
        font-size: .84rem;
    }

    .hero::before,
    .hero::after {
        opacity: .24;
    }

    .hero-actions .btn,
    .service-grid,
    .overview,
    .two-col,
    .stats-strip,
    .service-detail-grid,
    .reference-grid,
    .faq-grid,
    .gallery-grid,
    .team-grid,
    .service-team-grid,
    .contact-layout,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .service-feature-band {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 1.25rem;
    }

    .service-feature-band::before {
        background: linear-gradient(180deg, transparent 0%, rgba(229, 235, 233, .82) 100%);
    }

    .service-feature-band img {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .service-feature-content {
        padding: 1.25rem;
    }

    .service-feature-content h2 {
        max-width: 100%;
        font-size: clamp(1.55rem, 7vw, 2.2rem);
    }

    .service-feature-actions {
        width: 100%;
    }

    .service-feature-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .gallery-slider {
        width: min(100% - 2rem, 620px);
        padding: 1.5rem 0 2.8rem;
    }

    .gallery-slider-stage {
        min-height: 405px;
    }

    .gallery-slider .gallery-item {
        min-height: 320px;
    }

    .gallery-slider .gallery-item span {
        top: calc(100% + .55rem);
        padding: .55rem .65rem;
        font-size: .92rem;
        line-height: 1.22;
    }

    .gallery-slider .gallery-item span small {
        font-size: .82rem;
        line-height: 1.3;
    }

    .gallery-slider-nav {
        top: calc(1.5rem + 160px);
        width: 44px;
        height: 44px;
        font-size: 2.4rem;
    }

    .gallery-slider-nav.prev {
        left: .65rem;
    }

    .gallery-slider-nav.next {
        right: .65rem;
    }

    .reference-gallery {
        gap: .4rem;
        padding: .45rem;
    }

    .reference-gallery .reference-image {
        min-height: 92px;
    }

    .reference-gallery .reference-image:first-child {
        min-height: 170px;
    }

    .detail-card {
        padding: 1.35rem 1.25rem;
    }

    .detail-card > .icon {
        width: 2.7rem;
        height: 2.7rem;
    }

    .detail-card h2 {
        font-size: 1.35rem;
        line-height: 1.15;
    }

    .section-title,
    .service-card h3,
    .overview h2,
    .overview .contact-list li,
    .service-card a,
    .text-link {
        white-space: normal;
    }

    .overview h2 {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1rem;
    }

    .trust-row strong {
        white-space: normal;
    }

    .hero-sign {
        padding: 1rem 0;
    }

    .neon-main {
        font-size: 2.05rem;
    }

    .overview {
        padding: 1.4rem 1rem;
    }

    .overview > div {
        padding: 0 0 1.3rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .overview > div:last-child {
        border-bottom: 0;
    }

    .site-footer {
        display: grid;
        text-align: center;
    }

    .lightbox {
        align-items: center;
        padding: .75rem;
    }

    .lightbox-frame {
        width: 100%;
        max-width: 100%;
        max-height: calc(100dvh - 1.5rem);
        gap: .55rem;
    }

    .lightbox-visual {
        width: min(100%, 94vw);
        min-height: 240px;
        max-height: calc(100dvh - 8.5rem);
    }

    img.lightbox-visual {
        width: 94vw;
        height: auto;
        max-width: 94vw;
        max-height: calc(100dvh - 8.5rem);
        object-fit: contain;
    }

    .lightbox-caption {
        max-width: 94vw;
        padding: .45rem .65rem;
        font-size: .86rem;
        line-height: 1.25;
        border-radius: 8px;
    }

    .lightbox-counter {
        right: .75rem;
        bottom: .55rem;
    }

    .lightbox [data-lightbox-close] {
        top: .55rem;
        right: .55rem;
        width: 38px;
        height: 38px;
        font-size: 1.65rem;
        background: rgba(18, 30, 22, .54);
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 2rem;
        background: rgba(18, 30, 22, .58);
    }

    .lightbox-nav.prev {
        left: .45rem;
    }

    .lightbox-nav.next {
        right: .45rem;
    }

    .footer-links {
        justify-content: center;
        gap: 1.2rem;
    }
}

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

    .mini-reference-track {
        transition: none;
    }
}
