/* BLL site chrome: header, navigation and footer */
:root {
    --bll-yellow: #f5bf23;
    --bll-yellow-light: #ffd65d;
    --bll-ink: #111417;
    --bll-ink-soft: #1a1f24;
    --bll-steel: #89929b;
    --bll-white: #ffffff;
}

/* Header */
.bll-site-header,
.bll-site-header * {
    box-sizing: border-box;
}

.bll-site-header > .navbar {
    border: 0;
    background: transparent;
}

.bll-utility {
    min-height: 38px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #0c0f12;
    color: rgba(255, 255, 255, .72);
}

.bll-utility > .container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bll-utility__items {
    width: 100%;
    display: flex;
    align-items: center;
    min-width: 0;
}

.bll-utility span {
    padding: 0;
}

.bll-utility__item {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
    transition: color .2s ease;
}

a.bll-utility__item:hover,
a.bll-utility__item:focus {
    color: var(--bll-yellow);
}

.bll-utility__label {
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bll-utility__divider {
    width: 1px;
    height: 14px;
    margin: 0 16px;
    background: rgba(255, 255, 255, .18);
}

.bll-utility__divider--hours {
    margin-left: auto;
}

.bll-utility__promise {
    display: none;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bll-utility__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bll-yellow);
    box-shadow: 0 0 0 4px rgba(245, 191, 35, .12);
}

.bll-main-nav {
    position: relative;
    min-height: 80px;
    border: 0;
    border-bottom: 3px solid var(--bll-yellow);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .025) 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, .018) 75%) 0 0 / 18px 18px,
        linear-gradient(112deg, #1b2025 0%, #111417 66%, #090b0d 100%);
    transition: min-height .25s ease, box-shadow .25s ease;
}

.bll-main-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0, var(--bll-yellow) 14%, var(--bll-yellow) 86%, transparent 100%);
    pointer-events: none;
}

.bll-main-nav .navbar-brand {
    position: relative;
}

.bll-main-nav .navbar-brand:after {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 15px;
    background: var(--bll-yellow);
    transition: width .25s ease;
}

.bll-main-nav .navbar-brand:hover:after,
.bll-main-nav .navbar-brand:focus:after {
    width: 100%;
}

.bll-main-nav .navbar-nav > li > a {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.bll-main-nav .navbar-nav > li > a:before {
    content: none !important;
}

.bll-main-nav .navbar-nav > li > a:after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 19px;
    height: 2px;
    background: var(--bll-yellow);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.bll-main-nav .navbar-nav > li > a:hover,
.bll-main-nav .navbar-nav > li > a:focus,
.bll-main-nav .navbar-nav > li.active > a,
.bll-main-nav .navbar-nav > li.active > a:hover,
.bll-main-nav .navbar-nav > li.active > a:focus {
    color: var(--bll-yellow);
    background: transparent;
}

.bll-main-nav .navbar-nav > li > a:hover:after,
.bll-main-nav .navbar-nav > li > a:focus:after,
.bll-main-nav .navbar-nav > li.active > a:after {
    transform: scaleX(1);
}

.bll-nav-cta {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--bll-yellow);
    background: var(--bll-yellow);
    color: #111417;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(245, 191, 35, .16);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.bll-nav-cta:hover,
.bll-nav-cta:focus {
    background: transparent;
    color: var(--bll-yellow);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.bll-nav-cta__arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
}

.bll-nav-cta:hover .bll-nav-cta__arrow,
.bll-nav-cta:focus .bll-nav-cta__arrow {
    transform: translateX(4px);
}

.navbar-toggle .bll-menu-icon {
    width: 29px;
    height: 24px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.bll-menu-icon > span {
    width: 100%;
    height: 3px;
    display: block;
    background: var(--bll-yellow);
    transition: transform .2s ease, opacity .2s ease;
}

.navbar-toggle[aria-expanded="true"] .bll-menu-icon > span:first-child {
    transform: translateY(10px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .bll-menu-icon > span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .bll-menu-icon > span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}

/* Home hero */
.bll-hero {
    position: relative;
    height: min(880px, calc(100vh - 121px));
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    background: #0c0f12;
}

.bll-hero > .flexslider {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.bll-hero > .flexslider .flex-viewport,
.bll-hero > .flexslider .slides,
.bll-hero > .flexslider .slides > li,
.bll-hero > .flexslider .bg-cover {
    height: 100% !important;
}

.bll-hero > .flexslider .bg-cover {
    background-position: center center;
    transform: scale(1.015);
}

.bll-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(6, 9, 12, .94) 0%, rgba(8, 11, 14, .82) 32%, rgba(8, 11, 14, .28) 66%, rgba(8, 11, 14, .22) 100%),
        linear-gradient(0deg, rgba(8, 11, 14, .62) 0%, transparent 45%, rgba(8, 11, 14, .18) 100%);
    pointer-events: none;
}

.bll-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    pointer-events: none;
}

.bll-hero__content {
    position: relative;
    z-index: 5;
    height: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
}

.bll-hero__copy {
    width: min(730px, 66%);
    padding: 45px 0 55px;
}

.bll-hero__eyebrow {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--bll-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.bll-hero__eyebrow:before {
    content: "";
    width: 42px;
    height: 2px;
    flex: 0 0 auto;
    background: var(--bll-yellow);
}

.bll-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .98;
    text-transform: uppercase;
    text-wrap: balance;
}

.bll-hero h1 span {
    color: var(--bll-yellow);
}

.bll-hero__lead {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.75;
}

.bll-hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.bll-hero__button {
    min-height: 56px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border: 1px solid rgba(255, 255, 255, .44);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.bll-hero__button:hover,
.bll-hero__button:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: translateY(-2px);
}

.bll-hero__button--primary {
    border-color: var(--bll-yellow);
    background: var(--bll-yellow);
    color: var(--bll-ink);
}

.bll-hero__button--primary:hover,
.bll-hero__button--primary:focus {
    border-color: var(--bll-yellow-light);
    background: var(--bll-yellow-light);
    color: var(--bll-ink);
}

.bll-hero__button-arrow {
    font-size: 19px;
    line-height: 1;
    transition: transform .2s ease;
}

.bll-hero__button:hover .bll-hero__button-arrow,
.bll-hero__button:focus .bll-hero__button-arrow {
    transform: translateX(4px);
}

.bll-hero__proof {
    max-width: 650px;
    margin-top: 42px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.bll-hero__proof-item {
    min-width: 0;
    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, .17);
}

.bll-hero__proof-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.bll-hero__proof strong {
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 1.1;
}

.bll-hero__proof span {
    margin-top: 6px;
    display: block;
    color: rgba(255, 255, 255, .56);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.45;
    text-transform: uppercase;
}

.bll-hero__scroll {
    position: absolute;
    right: max(28px, calc((100vw - 1170px) / 2));
    bottom: 34px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transition: color .2s ease;
}

.bll-hero__scroll:after {
    content: "";
    width: 1px;
    height: 42px;
    background: var(--bll-yellow);
}

.bll-hero__scroll:hover,
.bll-hero__scroll:focus {
    color: var(--bll-yellow);
}

/* 404 page */
.bll-404 {
    min-height: calc(100vh - 121px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0c0f12 url("../images/banner/bll_banner_4.jpg") center / cover no-repeat;
    color: #fff;
}

.bll-404:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 9, 12, .95), rgba(7, 9, 12, .74) 55%, rgba(7, 9, 12, .48));
}

.bll-404:after {
    content: "404";
    position: absolute;
    right: 3vw;
    top: 50%;
    color: transparent;
    font-size: clamp(180px, 27vw, 430px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .8;
    -webkit-text-stroke: 1px rgba(245, 191, 35, .18);
    transform: translateY(-50%);
    pointer-events: none;
}

.bll-404__inner {
    position: relative;
    z-index: 1;
    padding-top: 95px;
    padding-bottom: 95px;
}

.bll-404__code {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--bll-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.bll-404__code:before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--bll-yellow);
}

.bll-404 h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.bll-404 p {
    max-width: 560px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.75;
}

.bll-404__actions {
    margin-top: 34px;
    display: flex;
    gap: 13px;
}

/* Company details page */
.bll-company-page {
    background: #f2f1ed;
}

.bll-company-hero {
    position: relative;
    height: 350px;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #090c0f;
}

.bll-company-hero:before {
    content: "";
    position: absolute;
    inset: -5%;
    background-image:
        linear-gradient(90deg, rgba(7, 10, 13, .96) 0%, rgba(8, 11, 14, .86) 45%, rgba(8, 11, 14, .36) 100%),
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        url("../images/header/bll_firemneudaje.jpg");
    background-position: center, 0 0, 0 0, center 46%;
    background-repeat: no-repeat, repeat, repeat, no-repeat;
    background-size: cover, 54px 54px, 54px 54px, cover;
    transform-origin: 58% center;
    animation: bll-company-ken-burns 14s ease-out both;
    will-change: transform;
    pointer-events: none;
}

.bll-company-hero:after {
    content: "";
    position: absolute;
    right: max(18px, calc((100% - 1170px) / 2));
    bottom: 22px;
    z-index: 0;
    width: clamp(280px, 27vw, 440px);
    aspect-ratio: 781 / 230;
    background: url("../images/logo/bll_logo.svg?v=2") center / contain no-repeat;
    opacity: .075;
    pointer-events: none;
}

@keyframes bll-company-ken-burns {
    from {
        transform: scale(1.01) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.11) translate3d(-1.2%, -.5%, 0);
    }
}

.bll-company-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 38px;
    padding-bottom: 38px;
}

.bll-company-eyebrow {
    margin: 0 0 11px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--bll-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.bll-company-eyebrow:before {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
}

.bll-company-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--bll-white);
    font-size: clamp(52px, 5.5vw, 70px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .92;
    text-transform: uppercase;
}

.bll-company-hero h1 span {
    color: var(--bll-yellow);
}

.bll-company-hero__lead {
    max-width: 610px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.6;
}

.bll-company-hero__scroll {
    position: absolute;
    right: max(30px, calc((100% - 1170px) / 2 + 15px));
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bll-company-hero__scroll:after {
    content: "↓";
    color: var(--bll-yellow);
    font-size: 18px;
}

.bll-company-hero__scroll:hover,
.bll-company-hero__scroll:focus {
    color: var(--bll-yellow);
}

.bll-company-content {
    position: relative;
    padding: 92px 0 105px;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 49.95%, rgba(17, 20, 23, .035) 50%, transparent 50.05%),
        #f2f1ed;
}

.bll-company-intro {
    position: relative;
    z-index: 1;
    height: auto !important;
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.bll-company-eyebrow--dark {
    margin-bottom: 10px;
    color: var(--bll-yellow);
}

.bll-company-intro h2 {
    margin: 0;
    color: var(--bll-ink);
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .98;
    text-transform: uppercase;
}

.bll-company-intro > p {
    max-width: 390px;
    margin: 0 0 3px;
    color: rgba(17, 20, 23, .62);
    font-size: 14px;
    line-height: 1.7;
}

.bll-company-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

.bll-company-layout > div,
.bll-company-layout > aside {
    display: flex;
}

.bll-company-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(17, 20, 23, .1);
    background: #fff;
    box-shadow: 0 28px 65px rgba(17, 20, 23, .08);
}

.bll-company-card__head {
    min-height: 132px;
    padding: 31px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--bll-ink);
}

.bll-company-card__head span {
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bll-company-card__head h3 {
    margin: 4px 0 0;
    color: var(--bll-yellow);
    font-size: 32px;
    line-height: 1;
}

.bll-company-card__head .bll-company-status {
    padding: 9px 12px;
    border: 1px solid rgba(245, 191, 35, .38);
    color: var(--bll-yellow);
    white-space: nowrap;
}

.bll-company-data {
    margin: 0;
    padding: 13px 36px 20px;
}

.bll-company-data > div {
    min-height: 78px;
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(17, 20, 23, .09);
}

.bll-company-data > div:last-child {
    border-bottom: 0;
}

.bll-company-data dt {
    color: var(--bll-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bll-company-data dd {
    margin: 0;
    color: var(--bll-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.bll-company-register {
    margin: 0 36px 36px;
    padding: 22px 24px;
    border-left: 4px solid var(--bll-yellow);
    background: #f4f3ef;
}

.bll-company-register span,
.bll-company-card-label {
    display: block;
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.bll-company-register p {
    margin: 7px 0 0;
    color: rgba(17, 20, 23, .72);
    font-size: 13px;
    line-height: 1.65;
}

.bll-company-aside {
    flex-direction: column;
    gap: 20px;
}

.bll-company-contact,
.bll-company-documents {
    width: 100%;
    padding: 31px;
}

.bll-company-contact {
    flex: 1;
    background: var(--bll-yellow);
    color: var(--bll-ink);
}

.bll-company-contact .bll-company-card-label {
    color: rgba(17, 20, 23, .6);
}

.bll-company-contact h2 {
    margin: 7px 0 23px;
    color: var(--bll-ink);
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

.bll-company-contact > a:not(.bll-company-contact__button),
.bll-company-contact address {
    margin: 0;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(17, 20, 23, .16);
    color: var(--bll-ink);
    font-style: normal;
}

.bll-company-contact > a:not(.bll-company-contact__button) span,
.bll-company-contact address span {
    display: block;
    color: rgba(17, 20, 23, .58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bll-company-contact > a:not(.bll-company-contact__button) strong,
.bll-company-contact address strong {
    margin-top: 3px;
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

.bll-company-contact__button {
    min-height: 52px;
    margin-top: 24px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--bll-ink);
    background: var(--bll-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.bll-company-contact__button:hover,
.bll-company-contact__button:focus {
    background: transparent;
    color: var(--bll-ink);
}

.bll-company-documents {
    background: var(--bll-ink);
}

.bll-company-documents .bll-company-card-label {
    margin-bottom: 13px;
    color: var(--bll-yellow);
}

.bll-company-documents a {
    padding: 11px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.bll-company-documents a:last-child {
    border-bottom: 0;
}

.bll-company-documents a span {
    color: var(--bll-yellow);
    font-size: 17px;
}

.bll-company-documents a:hover,
.bll-company-documents a:focus {
    color: var(--bll-yellow);
}

/* Legal pages */
.bll-legal-page {
    background: #f2f1ed;
}

.bll-company-hero.bll-legal-hero:before {
    background-image:
        linear-gradient(90deg, rgba(7, 10, 13, .96) 0%, rgba(8, 11, 14, .84) 45%, rgba(8, 11, 14, .34) 100%),
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        var(--bll-legal-hero-image);
}

.bll-legal-hero--privacy {
    --bll-legal-hero-image: url("../images/header/bll_gdpr.jpg");
}

.bll-legal-hero--cookies {
    --bll-legal-hero-image: url("../images/header/bll_cookies.jpg");
}

.bll-legal-hero h1 {
    max-width: 940px;
    font-size: clamp(46px, 5vw, 66px);
}

.bll-legal-content {
    position: relative;
    padding: 92px 0 105px;
    overflow: visible;
    background:
        linear-gradient(90deg, transparent 49.95%, rgba(17, 20, 23, .035) 50%, transparent 50.05%),
        #f2f1ed;
}

.bll-legal-intro {
    position: relative;
    z-index: 1;
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.bll-legal-intro h2 {
    margin: 0;
    color: var(--bll-ink);
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .98;
    text-transform: uppercase;
}

.bll-legal-intro > p {
    max-width: 390px;
    margin: 0 0 3px;
    color: rgba(17, 20, 23, .62);
    font-size: 14px;
    line-height: 1.7;
}

.bll-legal-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}

.bll-legal-document {
    width: 100%;
    padding: 48px 50px 54px;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 28px 65px rgba(17, 20, 23, .08);
}

.bll-legal-document p,
.bll-legal-document li {
    color: rgba(17, 20, 23, .72);
    font-size: 14px;
    line-height: 1.82;
    text-align: left !important;
}

.bll-legal-document p {
    margin: 0 0 15px;
}

.bll-legal-document strong {
    color: var(--bll-ink);
    font-weight: 600;
}

.bll-legal-document a {
    color: #9f7400;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bll-legal-document > br {
    display: none;
}

.bll-legal-lead {
    margin-bottom: 30px !important;
    padding: 22px 24px;
    border-left: 4px solid var(--bll-yellow);
    background: #f4f3ef;
    color: rgba(17, 20, 23, .78) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.bll-legal-operator {
    margin: 0 0 42px;
    padding: 32px 34px 25px;
    background: var(--bll-ink);
}

.bll-legal-operator .bll-company-card-label {
    margin: 0 0 7px;
}

.bll-legal-document .bll-legal-operator h2 {
    margin: 0 0 21px;
    padding: 0;
    border: 0;
    color: var(--bll-yellow);
    font-size: 31px;
    line-height: 1.1;
}

.bll-legal-operator dl {
    margin: 0;
}

.bll-legal-operator dl > div {
    min-height: 49px;
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.bll-legal-operator dt {
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bll-legal-operator dd {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.5;
}

.bll-legal-operator dd a {
    color: var(--bll-yellow);
}

.bll-legal-document > h2 {
    margin: 43px 0 17px;
    padding-top: 39px;
    border-top: 1px solid rgba(17, 20, 23, .1);
    color: var(--bll-ink);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.bll-legal-document .list {
    margin: 20px 0 34px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.bll-legal-document .list li {
    margin: 0;
    padding: 17px 20px 17px 52px;
    position: relative;
    border: 1px solid rgba(17, 20, 23, .08);
    background: #f7f6f2;
}

.bll-legal-document .list .list-mark {
    position: absolute;
    top: 16px;
    left: 19px;
    color: var(--bll-yellow);
    font-weight: 700;
}

.bll-legal-summary {
    margin: 35px 0 0 !important;
    padding: 24px 27px;
    border-left: 4px solid var(--bll-yellow);
    background: var(--bll-ink);
    color: rgba(255, 255, 255, .7) !important;
}

.bll-legal-summary strong {
    color: #fff;
}

.bll-legal-system-title {
    margin: 42px -50px 22px;
    padding: 22px 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bll-ink);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.bll-legal-system-title span {
    flex: 0 0 auto;
    color: var(--bll-yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.bll-legal-bullets {
    margin: 4px 0 20px;
    padding: 0;
    display: grid;
    gap: 7px;
    list-style: none;
}

.bll-legal-bullets li {
    margin: 0;
    padding: 9px 13px 9px 29px;
    position: relative;
    border-left: 2px solid rgba(245, 191, 35, .55);
    background: #f7f6f2;
}

.bll-legal-bullets li:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 13px;
    width: 5px;
    height: 2px;
    background: var(--bll-yellow);
}

.bll-legal-bullets .list-mark {
    display: none;
}

.bll-legal-document > li {
    margin: 0 0 8px;
    padding-left: 20px;
    position: relative;
    display: block;
    list-style: none;
}

.bll-legal-document > li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 1px;
    width: 6px;
    height: 2px;
    background: var(--bll-yellow);
}

.bll-legal-document > li .list-mark {
    display: none;
}

.bll-legal-aside {
    position: sticky;
    top: 128px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bll-legal-aside__panel,
.bll-legal-aside__contact {
    width: 100%;
    padding: 31px;
}

.bll-legal-aside__panel {
    background: var(--bll-ink);
}

.bll-legal-aside__panel .bll-company-card-label {
    margin-bottom: 14px;
}

.bll-legal-aside__panel nav a {
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
}

.bll-legal-aside__panel nav a:last-child {
    border-bottom: 0;
}

.bll-legal-aside__panel nav a span {
    color: var(--bll-yellow);
    font-size: 17px;
}

.bll-legal-aside__panel nav a:hover,
.bll-legal-aside__panel nav a:focus {
    color: var(--bll-yellow);
}

.bll-legal-aside__contact {
    background: var(--bll-yellow);
    color: var(--bll-ink);
}

.bll-legal-aside__contact .bll-company-card-label {
    color: rgba(17, 20, 23, .58);
}

.bll-legal-aside__contact h2 {
    margin: 8px 0 17px;
    color: var(--bll-ink);
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.bll-legal-aside__contact p:not(.bll-company-card-label) {
    margin: 0 0 20px;
    color: rgba(17, 20, 23, .68);
    font-size: 13px;
    line-height: 1.65;
}

.bll-legal-aside__contact > a,
.bll-legal-aside__contact > button {
    width: 100%;
    min-height: 51px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid var(--bll-ink);
    background: var(--bll-ink);
    color: #fff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.bll-legal-aside__contact > a:hover,
.bll-legal-aside__contact > a:focus,
.bll-legal-aside__contact > button:hover,
.bll-legal-aside__contact > button:focus {
    background: transparent;
    color: var(--bll-ink);
}

.bll-cookie-document {
    padding-bottom: 24px;
}

.bll-cookie-cards {
    margin: 0 -50px;
}

.bll-cookie-card {
    padding: 32px 50px 37px;
    position: relative;
    border-top: 1px solid rgba(17, 20, 23, .09);
}

.bll-cookie-card__number {
    display: block;
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.bll-legal-document .bll-cookie-card h2 {
    margin: 7px 0 16px;
    color: var(--bll-ink);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.bll-cookie-card p:last-child {
    margin-bottom: 0;
}

.bll-cookie-overview dl {
    margin: 0;
}

.bll-cookie-overview dl > div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

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

.bll-cookie-overview dt {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 600;
}

.bll-cookie-overview dd {
    margin: 4px 0 0;
    color: var(--bll-yellow);
    font-size: 10px;
    line-height: 1.4;
}

/* Unified inner pages */
.bll-about-page,
.bll-contact-page,
.bll-references-page,
.bll-services-page {
    background: #f2f1ed;
}

.bll-company-hero.bll-inner-hero:before {
    background-image:
        linear-gradient(90deg, rgba(7, 10, 13, .96) 0%, rgba(8, 11, 14, .84) 45%, rgba(8, 11, 14, .34) 100%),
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        var(--bll-inner-hero-image);
}

.bll-inner-hero--about {
    --bll-inner-hero-image: url("../images/header/bll_onas.jpg");
}

.bll-inner-hero--contact {
    --bll-inner-hero-image: url("../images/header/bll_kontakt.jpg");
}

.bll-inner-hero--references {
    --bll-inner-hero-image: url("../images/header/bll_projekt_rajpark.jpg");
}

.bll-inner-hero--services {
    --bll-inner-hero-image: url("../images/header/bll_sluzby.jpg");
}

.bll-inner-hero h1 {
    max-width: 940px;
    font-size: clamp(46px, 5vw, 66px);
}

.bll-page-content {
    position: relative;
    padding: 92px 0 105px;
    overflow: visible;
    background:
        linear-gradient(90deg, transparent 49.95%, rgba(17, 20, 23, .035) 50%, transparent 50.05%),
        #f2f1ed;
}

.bll-page-intro {
    position: relative;
    z-index: 1;
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.bll-page-intro h2 {
    margin: 0;
    color: var(--bll-ink);
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .98;
    text-transform: uppercase;
}

.bll-page-intro > p {
    max-width: 390px;
    margin: 0 0 3px;
    color: rgba(17, 20, 23, .62);
    font-size: 14px;
    line-height: 1.7;
}

/* About */
.bll-about-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

.bll-about-layout > div,
.bll-about-layout > aside {
    display: flex;
}

.bll-about-story {
    width: 100%;
    padding: 47px 50px 51px;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 28px 65px rgba(17, 20, 23, .08);
}

.bll-about-story h3 {
    max-width: 630px;
    margin: 9px 0 27px;
    color: var(--bll-ink);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.08;
    text-transform: uppercase;
}

.bll-about-story > p:not(.bll-company-card-label) {
    margin: 0 0 18px;
    color: rgba(17, 20, 23, .7);
    font-size: 14px;
    line-height: 1.85;
}

.bll-about-story blockquote {
    margin: 31px 0;
    padding: 24px 27px;
    border: 0;
    border-left: 4px solid var(--bll-yellow);
    background: #f4f3ef;
    color: var(--bll-ink);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.45;
}

.bll-about-aside {
    flex-direction: column;
    gap: 20px;
}

.bll-about-focus,
.bll-about-contact {
    width: 100%;
    padding: 31px;
}

.bll-about-focus {
    flex: 1;
    background: var(--bll-ink);
}

.bll-about-focus h2,
.bll-about-contact h2 {
    margin: 8px 0 22px;
    font-size: 30px;
    line-height: 1.04;
    text-transform: uppercase;
}

.bll-about-focus h2 {
    color: #fff;
}

.bll-about-focus ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.bll-about-focus li {
    padding: 11px 0 11px 18px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.bll-about-focus li:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    width: 6px;
    height: 2px;
    background: var(--bll-yellow);
}

.bll-about-focus > a,
.bll-about-contact > a {
    min-height: 50px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-about-focus > a span,
.bll-about-contact > a span {
    color: var(--bll-yellow);
    font-size: 17px;
}

.bll-about-focus > a:hover,
.bll-about-focus > a:focus {
    border-color: var(--bll-yellow);
    color: var(--bll-yellow);
}

.bll-about-contact {
    background: var(--bll-yellow);
}

.bll-about-contact .bll-company-card-label {
    color: rgba(17, 20, 23, .58);
}

.bll-about-contact h2 {
    color: var(--bll-ink);
}

.bll-about-contact > a {
    border-color: var(--bll-ink);
    background: var(--bll-ink);
}

.bll-about-contact > a:hover,
.bll-about-contact > a:focus {
    background: transparent;
    color: var(--bll-ink);
}

.bll-about-values {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
}

.bll-about-values article {
    min-height: 190px;
    padding: 31px 33px;
    border-right: 1px solid rgba(17, 20, 23, .09);
}

.bll-about-values article:last-child {
    border-right: 0;
}

.bll-about-values span {
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.bll-about-values h3 {
    margin: 9px 0 12px;
    color: var(--bll-ink);
    font-size: 19px;
    text-transform: uppercase;
}

.bll-about-values p {
    margin: 0;
    color: rgba(17, 20, 23, .62);
    font-size: 13px;
    line-height: 1.7;
}

/* Contact */
.bll-contact-quick {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 18px 45px rgba(17, 20, 23, .06);
}

.bll-contact-quick > a,
.bll-contact-quick > address {
    min-height: 112px;
    margin: 0;
    padding: 25px 29px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(17, 20, 23, .09);
    color: var(--bll-ink);
    font-style: normal;
}

.bll-contact-quick > *:last-child {
    border-right: 0;
}

.bll-contact-quick span {
    color: rgba(17, 20, 23, .46);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.bll-contact-quick strong {
    margin-top: 5px;
    color: var(--bll-ink);
    font-size: 16px;
    line-height: 1.45;
}

.bll-contact-quick i {
    position: absolute;
    right: 25px;
    color: var(--bll-yellow);
    font-size: 17px;
    font-style: normal;
}

.bll-contact-quick > a:hover {
    background: var(--bll-ink);
}

.bll-contact-quick > a:hover span,
.bll-contact-quick > a:hover strong {
    color: #fff;
}

.bll-contact-layout {
    display: flex;
    align-items: stretch;
}

.bll-contact-layout > div,
.bll-contact-layout > aside {
    display: flex;
}

.bll-contact-form-card {
    width: 100%;
    padding: 45px 50px 49px;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 28px 65px rgba(17, 20, 23, .08);
}

.bll-contact-form-card > h2 {
    margin: 8px 0 9px;
    color: var(--bll-ink);
    font-size: 34px;
    line-height: 1.1;
    text-transform: uppercase;
}

.bll-contact-form-card > p:not(.bll-company-card-label) {
    margin: 0 0 29px;
    color: rgba(17, 20, 23, .62);
    font-size: 13px;
    line-height: 1.7;
}

.bll-contact-form-card .form-box {
    margin: 0;
}

.bll-contact-form-card .form-box > label,
.bll-contact-form-card .form-box .col-md-6 > label {
    margin: 18px 0 7px;
    display: block;
    color: rgba(17, 20, 23, .62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-contact-form-card .form-box .row {
    margin: 0 -8px;
}

.bll-contact-form-card .form-box .row > div {
    padding: 0 8px;
}

.bll-contact-form-card .form-control {
    height: 52px;
    padding: 11px 14px;
    border: 1px solid rgba(17, 20, 23, .15);
    border-radius: 0;
    background: #f7f6f2;
    color: var(--bll-ink);
    font-size: 14px;
    box-shadow: none;
}

.bll-contact-form-card textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.bll-contact-form-card .form-control:focus {
    border-color: var(--bll-yellow);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(245, 191, 35, .14);
}

.bll-contact-form-card .form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.bll-contact-form-card .form-checkbox {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
}

.bll-contact-form-card .form-checkbox input {
    float: none;
    grid-column: 1;
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 3px 0 0;
    padding: 0;
    justify-self: start;
    accent-color: var(--bll-yellow);
}

.bll-contact-form-card .form-checkbox label {
    float: none;
    grid-column: 2;
    width: auto;
    min-width: 0;
    margin: 0;
    display: block;
    color: rgba(17, 20, 23, .62);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
}

.bll-contact-form-card .form-checkbox a {
    color: #9f7400;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bll-contact-submit {
    min-width: 205px;
    min-height: 52px;
    margin-top: 25px;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid var(--bll-ink) !important;
    border-radius: 0 !important;
    background: var(--bll-ink) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-contact-submit:hover,
.bll-contact-submit:focus {
    background: var(--bll-yellow) !important;
    color: var(--bll-ink) !important;
}

.bll-contact-aside {
    flex-direction: column;
    gap: 20px;
}

.bll-contact-hours,
.bll-contact-location {
    width: 100%;
    padding: 31px;
}

.bll-contact-hours {
    flex: 1;
    background: var(--bll-ink);
}

.bll-contact-hours h2,
.bll-contact-location h2 {
    margin: 8px 0 22px;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.bll-contact-hours h2 {
    color: #fff;
}

.bll-contact-hours dl {
    margin: 0;
}

.bll-contact-hours dl > div {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.bll-contact-hours dt {
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-contact-hours dd {
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 13px;
    color: var(--bll-yellow);
    font-size: 13px;
    font-weight: 600;
}

.bll-contact-location {
    background: var(--bll-yellow);
}

.bll-contact-location .bll-company-card-label {
    color: rgba(17, 20, 23, .58);
}

.bll-contact-location h2 {
    color: var(--bll-ink);
}

.bll-contact-location address {
    margin: 0 0 21px;
    color: rgba(17, 20, 23, .7);
    font-size: 14px;
    font-style: normal;
    line-height: 1.65;
}

.bll-contact-location > a {
    min-height: 50px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--bll-ink);
    background: var(--bll-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-contact-location > a:hover,
.bll-contact-location > a:focus {
    background: transparent;
    color: var(--bll-ink);
}

.bll-contact-map {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
}

.bll-contact-map__head {
    min-height: 108px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.bll-contact-map__head h2 {
    margin: 5px 0 0;
    color: var(--bll-ink);
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
}

.bll-contact-map__head > a {
    color: var(--bll-ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-contact-map__head > a span {
    margin-left: 8px;
    color: var(--bll-yellow);
    font-size: 16px;
}

.bll-contact-map iframe {
    display: block;
    filter: grayscale(1) contrast(.95);
}

/* References */
.bll-reference-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .85fr);
    background: var(--bll-ink);
    box-shadow: 0 28px 65px rgba(17, 20, 23, .12);
}

.bll-reference-featured__image {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: #0b0e11;
}

.bll-reference-featured__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(7, 10, 13, .58) 100%);
    pointer-events: none;
}

.bll-reference-featured__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .8s ease;
}

.bll-reference-featured__image > span {
    position: absolute;
    right: 26px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-reference-featured__image > span i {
    margin-left: 9px;
    color: var(--bll-yellow);
    font-size: 16px;
    font-style: normal;
}

.bll-reference-featured__image:hover img {
    transform: scale(1.045);
}

.bll-reference-featured__content {
    padding: 45px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bll-reference-featured__content h3 {
    margin: 12px 0 24px;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: .92;
    text-transform: uppercase;
}

.bll-reference-featured__content h3 span {
    color: var(--bll-yellow);
}

.bll-reference-featured__content > p:not(.bll-company-card-label) {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.75;
}

.bll-reference-featured__content dl {
    margin: 0 0 26px;
}

.bll-reference-featured__content dl > div {
    padding: 12px 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.bll-reference-featured__content dt {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-reference-featured__content dd {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
}

.bll-reference-featured__button {
    min-height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--bll-yellow);
    background: var(--bll-yellow);
    color: var(--bll-ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-reference-featured__button:hover,
.bll-reference-featured__button:focus {
    background: transparent;
    color: var(--bll-yellow);
}

.bll-references-note {
    min-height: 112px;
    padding: 25px 31px;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 30px;
    background: var(--bll-yellow);
}

.bll-references-note > span {
    color: rgba(17, 20, 23, .11);
    font-size: 47px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.bll-references-note p {
    margin: 0;
    color: rgba(17, 20, 23, .72);
    font-size: 13px;
    line-height: 1.65;
}

.bll-references-note a {
    min-height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--bll-ink);
    background: var(--bll-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-references-note a:hover,
.bll-references-note a:focus {
    background: transparent;
    color: var(--bll-ink);
}

/* Services */
.bll-services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bll-service-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 20px 48px rgba(17, 20, 23, .07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.bll-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(17, 20, 23, .12);
}

.bll-service-card__image {
    height: 225px;
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--bll-ink);
}

.bll-service-card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(7, 10, 13, .5) 100%);
    pointer-events: none;
}

.bll-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.bll-service-card:hover .bll-service-card__image img {
    transform: scale(1.055);
}

.bll-service-card__image > span {
    position: absolute;
    right: 18px;
    bottom: 15px;
    z-index: 1;
    color: var(--bll-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.bll-service-card__content {
    min-height: 300px;
    padding: 27px 28px 29px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.bll-service-card__content .bll-company-card-label {
    margin: 0 0 8px;
}

.bll-service-card__content h3 {
    min-height: 52px;
    margin: 0 0 13px;
    color: var(--bll-ink);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.bll-service-card__content h3 a {
    color: inherit;
}

.bll-service-card__content h3 a:hover,
.bll-service-card__content h3 a:focus {
    color: #9f7400;
}

.bll-service-card__content > p:not(.bll-company-card-label) {
    margin: 0 0 23px;
    color: rgba(17, 20, 23, .63);
    font-size: 13px;
    line-height: 1.72;
}

.bll-service-card__link {
    min-height: 48px;
    margin-top: auto;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid rgba(17, 20, 23, .16);
    color: var(--bll-ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-service-card__link span {
    color: var(--bll-yellow);
    font-size: 17px;
}

.bll-service-card__link:hover,
.bll-service-card__link:focus {
    border-color: var(--bll-ink);
    background: var(--bll-ink);
    color: #fff;
}

.bll-services-note {
    min-height: 130px;
    margin-top: 28px;
    padding: 28px 31px;
    display: grid;
    grid-template-columns: minmax(290px, 1.15fr) minmax(260px, .9fr) auto;
    align-items: center;
    gap: 32px;
    background: var(--bll-yellow);
}

.bll-services-note .bll-company-card-label {
    color: rgba(17, 20, 23, .56);
}

.bll-services-note h2 {
    margin: 7px 0 0;
    color: var(--bll-ink);
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
}

.bll-services-note > p {
    margin: 0;
    color: rgba(17, 20, 23, .68);
    font-size: 13px;
    line-height: 1.65;
}

.bll-services-note > a {
    min-height: 50px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid var(--bll-ink);
    background: var(--bll-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    white-space: nowrap;
    text-transform: uppercase;
}

.bll-services-note > a:hover,
.bll-services-note > a:focus {
    background: transparent;
    color: var(--bll-ink);
}

/* Footer CTA */
.bll-footer,
.bll-footer * {
    box-sizing: border-box;
}

.bll-footer {
    position: relative;
    overflow: hidden;
    border: 0;
    background: var(--bll-ink);
    color: rgba(255, 255, 255, .72);
}

.bll-footer .bll-footer-cta__inner {
    padding: 38px 15px;
}

.bll-footer .bll-footer-main > .container {
    padding: 0 15px;
}

.bll-footer .bll-footer-bottom__inner {
    padding: 0 15px;
}

.bll-footer-cta {
    position: relative;
    overflow: hidden;
    background: var(--bll-yellow);
    color: var(--bll-ink);
}

.bll-footer-cta:before {
    content: "";
    position: absolute;
    right: 2%;
    top: 50%;
    width: min(31vw, 380px);
    aspect-ratio: 781 / 230;
    background: url("../images/logo/bll_logo.svg?v=2") center / contain no-repeat;
    opacity: .14;
    mix-blend-mode: multiply;
    transform: translateY(-50%);
    pointer-events: none;
}

.bll-footer-cta:after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: -65px;
    width: 44%;
    height: 100px;
    background: rgba(255, 255, 255, .12);
    transform: skewX(-30deg);
    pointer-events: none;
}

.bll-footer-cta__inner {
    min-height: 194px;
    padding-top: 38px;
    padding-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    position: relative;
    z-index: 1;
}

.bll-footer-cta__copy {
    max-width: 680px;
}

.bll-footer-eyebrow {
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bll-footer-eyebrow:before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--bll-ink);
}

.bll-footer-cta h2 {
    margin: 0 0 9px;
    color: var(--bll-ink);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.18;
    text-transform: uppercase;
}

.bll-footer-cta p {
    margin: 0;
    color: rgba(17, 20, 23, .74);
    font-size: 14px;
    line-height: 1.65;
}

.bll-footer-cta__actions {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex: 0 0 auto;
}

.bll-footer-primary {
    min-height: 62px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid var(--bll-ink);
    background: var(--bll-ink);
    color: var(--bll-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.bll-footer-primary:hover,
.bll-footer-primary:focus {
    background: transparent;
    color: var(--bll-ink);
    transform: translateY(-2px);
}

.bll-footer-primary span {
    font-size: 19px;
}

.bll-footer-phone {
    min-height: 62px;
    padding: 9px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(17, 20, 23, .34);
    color: var(--bll-ink);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.bll-footer-phone:hover,
.bll-footer-phone:focus {
    border-color: var(--bll-ink);
    background: rgba(255, 255, 255, .18);
    color: var(--bll-ink);
    transform: translateY(-2px);
}

.bll-footer-phone small {
    margin-bottom: 2px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bll-footer-phone strong {
    font-size: 16px;
    letter-spacing: .03em;
}

/* Footer main */
.bll-footer-main {
    position: relative;
    padding: 72px 0 58px;
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 191, 35, .07), transparent 24%),
        linear-gradient(120deg, #171b1f 0%, #0f1215 65%, #0a0c0e 100%);
}

.bll-footer-main:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 28%;
    height: 3px;
    background: var(--bll-yellow);
}

.bll-footer-grid {
    display: flex;
    align-items: flex-start;
}

.bll-footer-brand {
    padding-right: 65px;
}

.bll-footer-logo {
    width: 132px;
    display: inline-block;
}

.bll-footer-logo img {
    width: 100%;
    height: auto;
    margin: 0;
}

.bll-footer-brand p {
    max-width: 420px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.75;
}

.bll-footer-tags {
    margin-top: 23px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bll-footer-tags span {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .64);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-footer-heading {
    margin: 5px 0 24px;
    color: var(--bll-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-footer-heading:after {
    content: "";
    width: 28px;
    height: 2px;
    margin-top: 12px;
    display: block;
    background: var(--bll-yellow);
}

.bll-footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px 18px;
}

.bll-footer-nav a {
    padding: 7px 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    transition: color .2s ease, transform .2s ease;
}

.bll-footer-nav a:before {
    content: "";
    width: 7px;
    height: 1px;
    background: var(--bll-yellow);
    transition: width .2s ease;
}

.bll-footer-nav a:hover,
.bll-footer-nav a:focus {
    color: var(--bll-yellow);
    transform: translateX(3px);
}

.bll-footer-nav a:hover:before,
.bll-footer-nav a:focus:before {
    width: 12px;
}

.bll-footer-contact-list {
    display: grid;
    gap: 14px;
}

.bll-footer-contact {
    padding-bottom: 13px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bll-footer-contact:last-child {
    border-bottom: 0;
}

.bll-footer-contact__label {
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-footer-contact a,
.bll-footer-contact address,
.bll-footer-contact span {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-style: normal;
    line-height: 1.55;
}

.bll-footer-contact a:hover,
.bll-footer-contact a:focus {
    color: var(--bll-yellow);
}

.bll-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #090b0d;
}

.bll-footer-bottom__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bll-footer-bottom__inner:before,
.bll-footer-bottom__inner:after {
    content: none !important;
    display: none !important;
}

.bll-footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    letter-spacing: .035em;
}

.bll-footer-copy strong,
.bll-footer-copy a {
    color: var(--bll-yellow);
}

.bll-footer-credit {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    letter-spacing: .035em;
    text-align: right;
}

.bll-footer-credit a {
    color: var(--bll-yellow);
    font-weight: 700;
}

.bll-footer-credit a:hover,
.bll-footer-credit a:focus {
    color: var(--bll-yellow-light);
}

.bll-footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bll-footer-legal a {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.bll-footer-legal a:hover,
.bll-footer-legal a:focus {
    color: var(--bll-yellow);
}

/* Project detail */
.bll-project-page {
    background: #f2f1ed;
}

.bll-project-hero {
    --bll-inner-hero-image: url("../images/header/bll_projekt_rajpark.jpg");
}

.bll-project-hero h1 {
    max-width: 930px;
}

.bll-project-content {
    scroll-margin-top: 110px;
}

.bll-project-overview {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
    box-shadow: 0 28px 65px rgba(17, 20, 23, .11);
}

.bll-project-overview__visual {
    min-height: 520px;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: var(--bll-ink);
}

.bll-project-overview__visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(7, 10, 13, .68) 100%);
    pointer-events: none;
}

.bll-project-overview__visual img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .9s ease;
}

.bll-project-overview__visual:hover img {
    transform: scale(1.035);
}

.bll-project-overview__visual figcaption {
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.bll-project-overview__visual figcaption span {
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bll-project-overview__visual figcaption strong {
    color: #fff;
    font-size: 18px;
    letter-spacing: .04em;
    text-align: right;
    text-transform: uppercase;
}

.bll-project-facts {
    padding: 43px 38px 36px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, transparent 0 81%, rgba(255, 255, 255, .025) 81% 100%),
        var(--bll-ink);
}

.bll-project-facts .bll-company-card-label {
    margin: 0 0 9px;
    color: var(--bll-yellow);
}

.bll-project-facts h2 {
    margin: 0 0 28px;
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.bll-project-facts dl {
    margin: 0 0 29px;
}

.bll-project-facts dl > div {
    min-height: 58px;
    padding: 15px 0;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 17px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.bll-project-facts dl > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.bll-project-facts dt {
    color: rgba(255, 255, 255, .4);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-project-facts dd {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 600;
}

.bll-project-facts__button {
    min-height: 52px;
    margin-top: auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--bll-yellow);
    background: var(--bll-yellow);
    color: var(--bll-ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-project-facts__button span {
    font-size: 17px;
}

.bll-project-facts__button:hover,
.bll-project-facts__button:focus {
    background: transparent;
    color: var(--bll-yellow);
}

.bll-project-social {
    margin-top: 13px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bll-project-social a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .62);
}

.bll-project-social a:hover,
.bll-project-social a:focus {
    border-color: var(--bll-yellow);
    color: var(--bll-yellow);
}

.bll-project-story {
    margin-top: 28px;
    padding: 47px 50px 0;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    column-gap: 74px;
    overflow: hidden;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 20px 48px rgba(17, 20, 23, .06);
}

.bll-project-story__heading .bll-company-card-label {
    margin: 0 0 8px;
    color: #9f7400;
}

.bll-project-story__heading h2 {
    max-width: 480px;
    margin: 0;
    color: var(--bll-ink);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.06;
    text-transform: uppercase;
}

.bll-project-story__copy {
    padding-top: 4px;
}

.bll-project-story__copy p {
    margin: 0 0 18px;
    color: rgba(17, 20, 23, .65);
    font-size: 14px;
    line-height: 1.8;
}

.bll-project-story__timeline {
    min-height: 88px;
    margin: 38px -50px 0;
    padding: 0 50px;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 19px;
    background: var(--bll-yellow);
}

.bll-project-story__timeline span,
.bll-project-story__timeline strong {
    color: var(--bll-ink);
    font-weight: 700;
    text-transform: uppercase;
}

.bll-project-story__timeline span {
    font-size: 20px;
}

.bll-project-story__timeline strong {
    font-size: 10px;
    letter-spacing: .1em;
    white-space: nowrap;
}

.bll-project-story__timeline i {
    height: 1px;
    flex: 1;
    background: rgba(17, 20, 23, .25);
}

.bll-project-gallery-section {
    margin-top: 78px;
    position: relative;
    z-index: 1;
}

.bll-project-gallery-head {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.bll-project-gallery-head .bll-company-card-label {
    margin: 0 0 8px;
    color: #9f7400;
}

.bll-project-gallery-head h2 {
    margin: 0;
    color: var(--bll-ink);
    font-size: 39px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.bll-project-gallery-head > p {
    max-width: 330px;
    margin: 0 0 3px;
    color: rgba(17, 20, 23, .56);
    font-size: 12px;
    line-height: 1.65;
    text-align: right;
}

.bll-project-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 255px;
    gap: 18px;
}

.bll-project-gallery__item {
    grid-column: span 4;
    position: relative;
    display: block;
    overflow: hidden;
    border: 0;
    background: var(--bll-ink);
    box-shadow: 0 16px 36px rgba(17, 20, 23, .08);
}

.bll-project-gallery__item--wide {
    grid-column: span 8;
}

.bll-project-gallery__item:last-child {
    grid-column: 1 / -1;
    grid-row: span 1;
}

.bll-project-gallery__item:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 46%, rgba(7, 10, 13, .7) 100%);
    pointer-events: none;
}

.bll-project-gallery__item img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    display: block;
    object-fit: cover;
    transition: transform .65s ease, filter .65s ease;
}

.bll-project-gallery__item:hover img,
.bll-project-gallery__item:focus img {
    transform: scale(1.045);
    filter: saturate(1.05);
}

.bll-project-gallery__item > span {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    width: auto;
    height: auto;
    margin: 0;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-left: 2px solid var(--bll-yellow);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    background: rgba(7, 10, 13, .82);
}

.bll-project-gallery__item > span b {
    color: var(--bll-yellow);
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 993px) {
    .bll-project-overview {
        grid-template-columns: 1fr;
    }

    .bll-project-overview__visual {
        min-height: 450px;
    }

    .bll-project-story {
        column-gap: 45px;
    }

    .bll-project-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }

    .bll-project-gallery__item,
    .bll-project-gallery__item--wide {
        grid-column: span 1;
    }

    .bll-project-gallery__item--wide,
    .bll-project-gallery__item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .bll-project-story {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }

    .bll-project-story__timeline {
        grid-column: auto;
    }

    .bll-project-gallery-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .bll-project-gallery-head > p {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .bll-project-hero h1 {
        max-width: 340px;
        font-size: 40px;
    }

    .bll-project-overview__visual {
        min-height: 310px;
    }

    .bll-project-overview__visual figcaption {
        right: 22px;
        bottom: 20px;
        left: 22px;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .bll-project-overview__visual figcaption strong {
        font-size: 15px;
        text-align: left;
    }

    .bll-project-facts,
    .bll-project-story {
        padding-right: 24px;
        padding-left: 24px;
    }

    .bll-project-story__heading h2,
    .bll-project-gallery-head h2 {
        font-size: 29px;
    }

    .bll-project-story__timeline {
        min-height: 104px;
        margin-right: -24px;
        margin-left: -24px;
        padding: 20px 24px;
        flex-wrap: wrap;
    }

    .bll-project-story__timeline i {
        min-width: 28px;
    }

    .bll-project-gallery-section {
        margin-top: 57px;
    }

    .bll-project-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 235px;
        gap: 14px;
    }

    .bll-project-gallery__item,
    .bll-project-gallery__item--wide,
    .bll-project-gallery__item:last-child {
        grid-column: 1;
    }
}

/* Service detail pages */
.bll-service-detail-page {
    background: #f2f1ed;
}

.bll-service-hero--excavation {
    --bll-inner-hero-image: url("../images/header/bll_vykopove_prace.jpg");
}

.bll-service-hero--apartments {
    --bll-inner-hero-image: url("../images/header/bll_rekonstrukcie_bytov.jpg");
}

.bll-service-hero--houses {
    --bll-inner-hero-image: url("../images/header/bll_stavby_domov.jpg");
}

.bll-service-hero--water {
    --bll-inner-hero-image: url("../images/header/bll_vodoinstalacie.jpg");
}

.bll-service-hero--electrical {
    --bll-inner-hero-image: url("../images/header/bll_elektroinstalacie.jpg");
}

.bll-service-hero--drywall {
    --bll-inner-hero-image: url("../images/header/bll_sadrokarton.jpg");
}

.bll-service-hero--painting {
    --bll-inner-hero-image: url("../images/header/bll_malovanie.jpg");
}

.bll-service-hero--plastering {
    --bll-inner-hero-image: url("../images/header/bll_malovanie_stierkovanie.jpg");
}

.bll-service-hero--tiling {
    --bll-inner-hero-image: url("../images/header/bll_obklady_dlazby.jpg");
}

.bll-service-hero--masonry {
    --bll-inner-hero-image: url("../images/header/bll_murovanie.jpg");
}

.bll-service-hero--engineering {
    --bll-inner-hero-image: url("../images/header/bll_inziniering.jpg");
}

.bll-service-hero--permit {
    --bll-inner-hero-image: url("../images/header/bll_stavebne_povolenie.jpg");
}

.bll-service-hero h1 {
    max-width: 930px;
}

.bll-service-hero--permit h1,
.bll-service-hero--houses h1 {
    max-width: 1020px;
    font-size: clamp(43px, 4.6vw, 62px);
}

.bll-service-detail-content {
    scroll-margin-top: 110px;
}

.bll-service-detail-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

.bll-service-detail-layout > div,
.bll-service-detail-layout > aside {
    display: flex;
}

.bll-service-detail-card {
    width: 100%;
    padding: 48px 50px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 24px 58px rgba(17, 20, 23, .08);
}

.bll-service-detail-card__number {
    position: absolute;
    top: 9px;
    right: 28px;
    color: rgba(17, 20, 23, .045);
    font-size: 108px;
    font-weight: 700;
    letter-spacing: -.08em;
    line-height: 1;
    pointer-events: none;
}

.bll-service-detail-card > .bll-company-card-label {
    position: relative;
    z-index: 1;
    margin: 0 0 9px;
    color: #9f7400;
}

.bll-service-detail-card > h2 {
    max-width: 620px;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
    color: var(--bll-ink);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.08;
    text-transform: uppercase;
}

.bll-service-detail-card > p {
    margin: 0 0 18px;
    color: rgba(17, 20, 23, .66);
    font-size: 14px;
    line-height: 1.8;
}

.bll-service-detail-card > .bll-service-detail-card__opening {
    margin: 0 0 25px;
    padding: 3px 0 3px 22px;
    border-left: 3px solid var(--bll-yellow);
    color: var(--bll-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.58;
}

.bll-service-detail-scope {
    margin: 39px -50px 0;
    padding: 35px 50px 39px;
    border-top: 1px solid rgba(17, 20, 23, .08);
    background: #f7f6f2;
}

.bll-service-detail-scope .bll-company-card-label {
    margin: 0 0 7px;
    color: #9f7400;
}

.bll-service-detail-scope h3 {
    margin: 0 0 23px;
    color: var(--bll-ink);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.bll-service-detail-scope ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    list-style: none;
}

.bll-service-detail-scope li {
    min-height: 47px;
    padding: 13px 0 12px 23px;
    position: relative;
    border-top: 1px solid rgba(17, 20, 23, .09);
    color: rgba(17, 20, 23, .74);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.bll-service-detail-scope li:before {
    content: "";
    width: 9px;
    height: 2px;
    position: absolute;
    top: 22px;
    left: 0;
    background: var(--bll-yellow);
}

.bll-service-process {
    margin: 0 -50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--bll-ink);
}

.bll-service-process > div {
    min-height: 147px;
    padding: 26px 25px 24px;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.bll-service-process > div:last-child {
    border-right: 0;
}

.bll-service-process span,
.bll-service-process strong,
.bll-service-process small {
    display: block;
}

.bll-service-process span {
    margin-bottom: 10px;
    color: var(--bll-yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.bll-service-process strong {
    color: #fff;
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.bll-service-process small {
    margin-top: 8px;
    color: rgba(255, 255, 255, .53);
    font-size: 11px;
    line-height: 1.55;
}

.bll-service-detail-aside {
    flex-direction: column;
    gap: 20px;
}

.bll-service-contact-card,
.bll-service-related {
    padding: 34px 32px;
}

.bll-service-contact-card {
    background:
        linear-gradient(135deg, transparent 0 76%, rgba(255, 255, 255, .13) 76% 100%),
        var(--bll-yellow);
}

.bll-service-contact-card .bll-company-card-label {
    margin: 0 0 9px;
    color: rgba(17, 20, 23, .56);
}

.bll-service-contact-card h2,
.bll-service-related h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.bll-service-contact-card h2 {
    max-width: 250px;
    color: var(--bll-ink);
}

.bll-service-contact-card > p:not(.bll-company-card-label) {
    margin: 17px 0 24px;
    color: rgba(17, 20, 23, .66);
    font-size: 12px;
    line-height: 1.7;
}

.bll-service-contact-card > a:not(.bll-service-contact-card__phone) {
    min-height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: var(--bll-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-service-contact-card > a:not(.bll-service-contact-card__phone):hover,
.bll-service-contact-card > a:not(.bll-service-contact-card__phone):focus {
    background: #fff;
    color: var(--bll-ink);
}

.bll-service-contact-card__phone {
    margin-top: 21px;
    display: block;
    color: var(--bll-ink);
}

.bll-service-contact-card__phone small,
.bll-service-contact-card__phone strong {
    display: block;
}

.bll-service-contact-card__phone small {
    margin-bottom: 4px;
    color: rgba(17, 20, 23, .54);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-service-contact-card__phone strong {
    font-size: 17px;
}

.bll-service-contact-card__phone:hover,
.bll-service-contact-card__phone:focus {
    color: #5f4500;
}

.bll-service-related {
    flex: 1;
    background: var(--bll-ink);
}

.bll-service-related .bll-company-card-label {
    margin: 0 0 9px;
    color: var(--bll-yellow);
}

.bll-service-related h2 {
    margin-bottom: 23px;
    color: #fff;
}

.bll-service-related > a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .69);
    font-size: 11px;
    line-height: 1.35;
}

.bll-service-related > a span:last-child {
    flex: 0 0 auto;
    color: var(--bll-yellow);
    font-size: 15px;
}

.bll-service-related > a:hover,
.bll-service-related > a:focus {
    color: #fff;
}

.bll-service-related > .bll-service-related__all {
    margin-top: 11px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bll-service-related > .bll-service-related__all:hover,
.bll-service-related > .bll-service-related__all:focus {
    border-color: var(--bll-yellow);
}

.bll-service-pager {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(17, 20, 23, .09);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 20, 23, .055);
}

.bll-service-pager a {
    min-height: 94px;
    padding: 22px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(17, 20, 23, .09);
}

.bll-service-pager a:last-child {
    align-items: flex-end;
    border-right: 0;
    text-align: right;
}

.bll-service-pager small,
.bll-service-pager strong {
    display: block;
}

.bll-service-pager small {
    margin-bottom: 6px;
    color: #9f7400;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bll-service-pager strong {
    color: var(--bll-ink);
    font-size: 13px;
    text-transform: uppercase;
}

.bll-service-pager a:hover,
.bll-service-pager a:focus {
    background: var(--bll-yellow);
}

@media (max-width: 993px) {
    .bll-service-detail-layout {
        display: block;
    }

    .bll-service-detail-layout > div,
    .bll-service-detail-layout > aside {
        display: block;
    }

    .bll-service-detail-aside {
        margin-top: 20px;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bll-service-detail-scope ul,
    .bll-service-process,
    .bll-service-pager,
    .bll-service-detail-aside {
        grid-template-columns: 1fr;
    }

    .bll-service-process > div {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .bll-service-process > div:last-child {
        border-bottom: 0;
    }

    .bll-service-pager a,
    .bll-service-pager a:last-child {
        min-height: 82px;
        align-items: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 20, 23, .09);
        text-align: left;
    }

    .bll-service-pager a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .bll-service-hero--permit h1,
    .bll-service-hero--houses h1,
    .bll-service-hero h1 {
        max-width: 345px;
        font-size: 36px;
    }

    .bll-service-detail-card {
        padding: 31px 24px 0;
    }

    .bll-service-detail-card__number {
        top: 13px;
        right: 20px;
        font-size: 75px;
    }

    .bll-service-detail-card > h2 {
        max-width: 280px;
        margin-bottom: 23px;
        font-size: 27px;
    }

    .bll-service-detail-card > .bll-service-detail-card__opening {
        padding-left: 17px;
        font-size: 16px;
    }

    .bll-service-detail-scope {
        margin-right: -24px;
        margin-left: -24px;
        padding: 29px 24px 32px;
    }

    .bll-service-process {
        margin-right: -24px;
        margin-left: -24px;
    }

    .bll-service-process > div,
    .bll-service-contact-card,
    .bll-service-related {
        padding: 25px 24px;
    }

    .bll-service-pager a {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (min-width: 994px) {
    header.bll-site-header {
        height: 121px !important;
    }

    .bll-main-nav > .container {
        width: 1170px !important;
        height: 80px;
        padding: 0 15px !important;
        display: flex;
        align-items: center;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-header {
        height: 80px;
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        float: none;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-brand {
        width: 138px;
        height: 80px;
        min-height: 0;
        margin: 0 45px 0 0;
        padding: 17px 0 !important;
        display: flex !important;
        align-items: center;
        float: none;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-brand img {
        width: auto;
        height: 38px;
        max-height: 38px;
    }

    .bll-main-nav .navbar-collapse {
        min-width: 0;
        padding: 0;
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
        flex: 1 1 auto;
        border: 0 !important;
        box-shadow: none;
    }

    .bll-main-nav .navbar-collapse > ul.nav {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        display: flex;
        justify-content: flex-start;
        flex: 0 1 auto;
    }

    .bll-main-nav ul.nav > li {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .bll-main-nav .navbar-nav > li > a {
        height: 80px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        border: 0 !important;
    }

    .bll-main-nav .navbar-nav > li:first-child > a {
        border: 0;
    }

    .bll-main-nav .navbar-right {
        position: static !important;
        top: auto !important;
        right: auto !important;
        margin: 0 !important;
        display: block !important;
        float: none !important;
        flex: 0 0 auto;
    }

    .bll-main-nav .navbar-right > * {
        padding: 0;
        float: none;
    }

    .bll-main-nav .custom-area {
        margin: 0 0 0 25px;
    }
}

@media (max-width: 1200px) and (min-width: 994px) {
    .bll-main-nav > .container {
        width: 970px !important;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-brand {
        width: 120px;
        margin-right: 24px;
    }

    .bll-main-nav .navbar-nav > li > a {
        padding-right: 12px;
        padding-left: 12px;
    }

    .bll-main-nav .custom-area {
        margin-left: 14px;
    }

    .bll-nav-cta {
        padding-right: 13px;
        padding-left: 13px;
        font-size: 10px;
    }

    .bll-footer-cta__inner {
        gap: 25px;
    }

    .bll-footer-cta h2 {
        font-size: 29px;
    }

    .bll-footer-brand {
        padding-right: 35px;
    }

    .bll-company-hero__scroll {
        right: max(30px, calc((100% - 970px) / 2 + 15px));
    }
}

@media (max-width: 993px) {
    .bll-site-header > .navbar {
        margin: 0;
    }

    .bll-utility > .container {
        min-height: 36px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .bll-utility__item {
        min-height: 36px;
        font-size: 10px;
    }

    .bll-utility__item--hours,
    .bll-utility__promise,
    .bll-utility__divider--hours {
        display: none;
    }

    .bll-utility__divider {
        margin-right: 11px;
        margin-left: 11px;
    }

    .bll-main-nav {
        min-height: 76px;
    }

    .bll-main-nav > .container {
        padding: 0;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-header {
        width: 100%;
        min-height: 76px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-brand {
        width: 112px;
        height: 76px;
        margin: 0 0 0 15px;
        padding: 17px 0 !important;
        display: flex;
        align-items: center;
    }

    .navbar-main.navbar-middle.bll-main-nav .navbar-brand img {
        width: auto;
        height: 34px;
        max-height: 34px;
    }

    .bll-main-nav .navbar-brand:after {
        bottom: 13px;
    }

    .bll-main-nav button.navbar-toggle {
        width: 48px;
        height: 48px;
        margin: 0 15px 0 0;
        padding: 12px 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(245, 191, 35, .5);
        border-radius: 0;
        background: rgba(255, 255, 255, .03);
    }

    .bll-main-nav button.navbar-toggle:hover,
    .bll-main-nav button.navbar-toggle:focus {
        border-color: var(--bll-yellow);
        background: rgba(245, 191, 35, .08);
    }

    .bll-main-nav .navbar-collapse {
        margin: 0;
        padding: 12px 15px 20px !important;
        border-top: 1px solid rgba(245, 191, 35, .28) !important;
        background: #111417 !important;
    }

    .bll-main-nav .navbar-nav {
        margin: 0 !important;
    }

    .bll-main-nav .navbar-nav > li > a {
        min-height: 49px;
        padding: 0 4px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
    }

    .bll-main-nav .navbar-nav > li > a:after {
        left: 4px;
        right: auto;
        bottom: 9px;
        width: 28px;
        transform-origin: left;
    }

    .bll-main-nav .navbar-right {
        margin: 15px 0 0 !important;
    }

    .bll-main-nav .custom-area {
        margin: 0;
    }

    .bll-nav-cta {
        width: 100%;
    }

    .bll-hero {
        height: calc(100svh - 114px);
        min-height: 690px;
        max-height: 820px;
    }

    .bll-hero:before {
        background: linear-gradient(90deg, rgba(6, 9, 12, .93), rgba(8, 11, 14, .66) 72%, rgba(8, 11, 14, .42));
    }

    .bll-hero__content {
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    .bll-hero__copy {
        width: min(680px, 88%);
        padding: 40px 0;
    }

    .bll-hero h1 {
        font-size: clamp(46px, 8vw, 66px);
    }

    .bll-hero__scroll {
        display: none;
    }

    .bll-404 {
        min-height: 680px;
    }

    .bll-404__inner {
        padding: 80px 24px;
    }

    .bll-footer-cta__inner,
    .bll-footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .bll-footer .bll-footer-cta__inner {
        padding-top: 35px;
        padding-bottom: 35px;
        gap: 25px;
    }

    .bll-footer-cta h2 {
        font-size: 28px;
    }

    .bll-footer-cta__actions {
        width: 100%;
    }

    .bll-footer-primary,
    .bll-footer-phone {
        flex: 1 1 0;
    }

    .bll-footer-main {
        padding: 50px 0 35px;
    }

    .bll-footer-grid {
        display: block;
    }

    .bll-footer-grid > div {
        margin-top: 0;
        margin-bottom: 38px;
    }

    .bll-footer-brand {
        padding-right: 15px;
    }

    .bll-footer .bll-footer-bottom__inner {
        min-height: 0;
        padding: 22px 15px 72px;
        gap: 16px;
    }

    .bll-footer-credit {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .bll-utility__label {
        display: none;
    }

    .bll-utility__item {
        letter-spacing: 0;
    }

    .bll-utility__divider {
        margin-right: 8px;
        margin-left: 8px;
    }

    .bll-hero {
        height: auto;
        min-height: 690px;
    }

    .bll-hero > .flexslider .bg-cover {
        background-position: 57% center;
    }

    .bll-hero:before {
        background: linear-gradient(90deg, rgba(6, 9, 12, .94), rgba(8, 11, 14, .6)), linear-gradient(0deg, rgba(6, 9, 12, .7), transparent 55%);
    }

    .bll-hero:after {
        background-size: 42px 42px;
    }

    .bll-hero__content {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .bll-hero__copy {
        width: 100%;
        padding: 52px 0 40px;
    }

    .bll-hero__eyebrow {
        margin-bottom: 17px;
        font-size: 9px;
    }

    .bll-hero h1 {
        font-size: 42px;
        line-height: 1.02;
    }

    .bll-hero__lead {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .bll-hero__actions {
        margin-top: 27px;
        align-items: stretch;
        flex-direction: column;
    }

    .bll-hero__button {
        width: 100%;
    }

    .bll-hero__proof {
        margin-top: 30px;
        padding-top: 20px;
    }

    .bll-hero__proof-item {
        padding: 0 9px;
    }

    .bll-hero__proof strong {
        font-size: 21px;
    }

    .bll-hero__proof span {
        font-size: 8px;
        letter-spacing: .06em;
    }

    .bll-404 {
        min-height: 650px;
    }

    .bll-404:after {
        right: -10vw;
        top: 17%;
        font-size: 190px;
        transform: none;
    }

    .bll-404__inner {
        padding: 72px 15px;
    }

    .bll-404 h1 {
        font-size: 46px;
    }

    .bll-404 p {
        font-size: 14px;
    }

    .bll-404__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bll-footer-cta:before {
        right: -16%;
        width: 260px;
    }

    .bll-footer-cta h2 {
        font-size: 25px;
    }

    .bll-footer-cta__actions {
        flex-direction: column;
    }

    .bll-footer-primary,
    .bll-footer-phone {
        width: 100%;
        flex: none;
    }

    .bll-footer-nav {
        grid-template-columns: 1fr;
    }

    .bll-footer-contact {
        grid-template-columns: 62px 1fr;
    }

    .bll-footer-legal {
        flex-wrap: wrap;
        gap: 10px 16px;
    }
}

@media (max-width: 993px) {
    .bll-company-hero {
        height: 350px;
        min-height: 350px;
    }

    .bll-company-hero__inner {
        padding: 38px 24px;
    }

    .bll-company-hero:after {
        right: -36px;
        bottom: 24px;
        width: 300px;
    }

    .bll-company-hero__scroll {
        display: none;
    }

    .bll-company-content {
        padding: 70px 0 80px;
    }

    .bll-company-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .bll-company-intro > p {
        max-width: 560px;
    }

    .bll-company-layout {
        display: block;
    }

    .bll-company-aside {
        margin-top: 20px;
    }
}

@media (max-width: 560px) {
    .bll-company-hero {
        height: 350px;
        min-height: 350px;
    }

    .bll-company-hero:before {
        background-position: center, 0 0, 0 0, 62% center;
    }

    .bll-company-hero__inner {
        padding: 30px 15px;
    }

    .bll-company-hero h1 {
        font-size: 42px;
    }

    .bll-company-hero__lead {
        margin-top: 13px;
        font-size: 13px;
        line-height: 1.5;
    }

    .bll-company-content {
        padding: 57px 0 65px;
    }

    .bll-company-intro {
        margin-bottom: 30px;
    }

    .bll-company-intro h2 {
        font-size: 38px;
    }

    .bll-company-card__head {
        min-height: 0;
        padding: 27px 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .bll-company-card__head h3 {
        font-size: 28px;
    }

    .bll-company-data {
        padding: 11px 24px 16px;
    }

    .bll-company-data > div {
        min-height: 0;
        padding: 17px 0;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .bll-company-data dd {
        font-size: 15px;
    }

    .bll-company-register {
        margin: 0 24px 24px;
        padding: 19px 20px;
    }

    .bll-company-contact,
    .bll-company-documents {
        padding: 27px 24px;
    }
}

@media (max-width: 993px) {
    .bll-legal-content {
        padding: 70px 0 80px;
    }

    .bll-legal-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .bll-legal-intro > p {
        max-width: 560px;
    }

    .bll-legal-layout {
        display: block;
    }

    .bll-legal-aside {
        margin-top: 20px;
        position: static;
    }
}

@media (max-width: 560px) {
    .bll-legal-hero h1 {
        max-width: 330px;
        font-size: 39px;
        line-height: .96;
    }

    .bll-legal-content {
        padding: 57px 0 65px;
    }

    .bll-legal-intro {
        margin-bottom: 30px;
    }

    .bll-legal-intro h2 {
        font-size: 38px;
    }

    .bll-legal-document {
        padding: 27px 24px 34px;
    }

    .bll-legal-lead {
        margin-bottom: 24px !important;
        padding: 19px 19px;
        font-size: 14px !important;
    }

    .bll-legal-operator {
        margin-bottom: 33px;
        padding: 27px 22px 20px;
    }

    .bll-legal-operator dl > div {
        padding: 13px 0;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .bll-legal-document > h2 {
        margin-top: 34px;
        padding-top: 31px;
        font-size: 22px;
    }

    .bll-legal-document .list li {
        padding: 16px 17px 16px 44px;
    }

    .bll-legal-document .list .list-mark {
        left: 16px;
    }

    .bll-legal-summary {
        padding: 21px 20px;
    }

    .bll-legal-system-title {
        margin: 36px -24px 21px;
        padding: 20px 24px;
        align-items: flex-start;
        font-size: 16px;
    }

    .bll-legal-aside__panel,
    .bll-legal-aside__contact {
        padding: 27px 24px;
    }

    .bll-cookie-document {
        padding-bottom: 10px;
    }

    .bll-cookie-cards {
        margin: 0 -24px;
    }

    .bll-cookie-card {
        padding: 27px 24px 31px;
    }

    .bll-legal-document .bll-cookie-card h2 {
        font-size: 22px;
    }
}

@media (max-width: 993px) {
    .bll-page-content {
        padding: 70px 0 80px;
    }

    .bll-page-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .bll-page-intro > p {
        max-width: 560px;
    }

    .bll-about-layout,
    .bll-contact-layout {
        display: block;
    }

    .bll-about-aside,
    .bll-contact-aside {
        margin-top: 20px;
    }

    .bll-reference-featured {
        grid-template-columns: 1fr;
    }

    .bll-reference-featured__image {
        min-height: 410px;
    }

    .bll-reference-featured__content {
        padding: 39px 40px 43px;
    }

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

    .bll-services-note {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .bll-services-note > p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 767px) {
    .bll-about-values,
    .bll-contact-quick {
        grid-template-columns: 1fr;
    }

    .bll-about-values article,
    .bll-contact-quick > a,
    .bll-contact-quick > address {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 20, 23, .09);
    }

    .bll-about-values article:last-child,
    .bll-contact-quick > *:last-child {
        border-bottom: 0;
    }

    .bll-references-note {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bll-references-note > span {
        display: none;
    }

    .bll-references-note a {
        justify-content: space-between;
    }

    .bll-services-grid,
    .bll-services-note {
        grid-template-columns: 1fr;
    }

    .bll-services-note {
        gap: 18px;
    }

    .bll-services-note > p {
        grid-column: auto;
        grid-row: auto;
    }

    .bll-services-note > a {
        justify-content: space-between;
    }
}

@media (max-width: 560px) {
    .bll-inner-hero h1 {
        max-width: 330px;
        font-size: 39px;
        line-height: .96;
    }

    .bll-page-content {
        padding: 57px 0 65px;
    }

    .bll-page-intro {
        margin-bottom: 30px;
    }

    .bll-page-intro h2 {
        font-size: 38px;
    }

    .bll-about-story,
    .bll-contact-form-card {
        padding: 29px 24px 34px;
    }

    .bll-about-story h3,
    .bll-contact-form-card > h2 {
        font-size: 28px;
    }

    .bll-about-story blockquote {
        margin: 25px 0;
        padding: 20px 20px;
        font-size: 18px;
    }

    .bll-about-focus,
    .bll-about-contact,
    .bll-contact-hours,
    .bll-contact-location {
        padding: 27px 24px;
    }

    .bll-about-values article {
        min-height: 0;
        padding: 27px 24px;
    }

    .bll-contact-quick > a,
    .bll-contact-quick > address {
        min-height: 96px;
        padding: 21px 24px;
    }

    .bll-contact-form-card .form-box .row {
        margin: 0;
    }

    .bll-contact-form-card .form-box .row > div {
        padding: 0;
    }

    .bll-contact-submit {
        width: 100%;
    }

    .bll-contact-map__head {
        padding: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .bll-contact-map iframe {
        height: 330px;
    }

    .bll-reference-featured__image {
        min-height: 270px;
    }

    .bll-reference-featured__content {
        padding: 31px 24px 34px;
    }

    .bll-reference-featured__content h3 {
        font-size: 38px;
    }

    .bll-references-note {
        padding: 25px 24px;
    }

    .bll-service-card__image {
        height: 210px;
    }

    .bll-service-card__content {
        min-height: 0;
        padding: 25px 24px 27px;
    }

    .bll-service-card__content h3 {
        min-height: 0;
        font-size: 20px;
    }

    .bll-services-note {
        padding: 25px 24px;
    }

    .bll-services-note > a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bll-company-hero:before {
        animation: none !important;
        transform: none !important;
    }

    .bll-site-header *,
    .bll-footer * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Unified CTA system: yellow on dark backgrounds, dark on light/yellow backgrounds. */
:is(
    .bll-nav-cta,
    .bll-hero__button,
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-focus > a,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-reference-featured__button,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-project-facts__button,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
    .bll-service-related > .bll-service-related__all
) {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 0 !important;
    background-repeat: no-repeat !important;
    background-size: 200% 100% !important;
    background-position: left center !important;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-decoration: none !important;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-position .3s cubic-bezier(.22, 1, .36, 1),
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        transform .2s ease !important;
}

:is(
    .bll-nav-cta,
    .bll-hero__button,
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-focus > a,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-reference-featured__button,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-project-facts__button,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
    .bll-service-related > .bll-service-related__all
):hover,
:is(
    .bll-nav-cta,
    .bll-hero__button,
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-focus > a,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-reference-featured__button,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-project-facts__button,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
    .bll-service-related > .bll-service-related__all
):focus {
    background-position: right center !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(17, 20, 23, .18) !important;
}

/* Type 1: yellow button for dark surfaces. */
:is(
    .bll-nav-cta,
    .bll-hero__button,
    .bll-about-focus > a,
    .bll-reference-featured__button,
    .bll-project-facts__button,
    .bll-service-related > .bll-service-related__all
),
:is(
    .bll-nav-cta,
    .bll-hero__button,
    .bll-about-focus > a,
    .bll-reference-featured__button,
    .bll-project-facts__button,
    .bll-service-related > .bll-service-related__all
):hover,
:is(
    .bll-nav-cta,
    .bll-hero__button,
    .bll-about-focus > a,
    .bll-reference-featured__button,
    .bll-project-facts__button,
    .bll-service-related > .bll-service-related__all
):focus {
    border-color: var(--bll-yellow) !important;
    background-color: var(--bll-yellow) !important;
    background-image: linear-gradient(90deg, var(--bll-yellow) 0 50%, #fff 50% 100%) !important;
    color: var(--bll-ink) !important;
}

:is(
    .bll-nav-cta,
    .bll-hero__button,
    .bll-about-focus > a,
    .bll-reference-featured__button,
    .bll-project-facts__button,
    .bll-service-related > .bll-service-related__all
):hover,
:is(
    .bll-nav-cta,
    .bll-hero__button,
    .bll-about-focus > a,
    .bll-reference-featured__button,
    .bll-project-facts__button,
    .bll-service-related > .bll-service-related__all
):focus {
    border-color: #fff !important;
}

/* Type 2: dark button for light and yellow surfaces. */
:is(
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone)
),
:is(
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone)
):hover,
:is(
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone)
):focus {
    border-color: var(--bll-ink) !important;
    background-color: var(--bll-ink) !important;
    background-image: linear-gradient(90deg, var(--bll-ink) 0 50%, var(--bll-yellow) 50% 100%) !important;
    color: #fff !important;
}

:is(
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone)
):hover,
:is(
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-footer-phone,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone)
):focus {
    border-color: var(--bll-yellow) !important;
    color: var(--bll-ink) !important;
}

:is(
    .bll-nav-cta,
    .bll-hero__button,
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-focus > a,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-reference-featured__button,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-project-facts__button,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
    .bll-service-related > .bll-service-related__all
) > [aria-hidden="true"] {
    flex: 0 0 auto;
    color: inherit !important;
    transition: transform .2s ease !important;
}

:is(
    .bll-nav-cta,
    .bll-hero__button,
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-focus > a,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-reference-featured__button,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-project-facts__button,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
    .bll-service-related > .bll-service-related__all
):hover > [aria-hidden="true"],
:is(
    .bll-nav-cta,
    .bll-hero__button,
    a.btn,
    button.btn,
    .bll-company-contact__button,
    .bll-legal-aside__contact > a,
    .bll-legal-aside__contact > button,
    .bll-about-focus > a,
    .bll-about-contact > a,
    .bll-contact-location > a,
    .bll-contact-submit,
    .bll-reference-featured__button,
    .bll-references-note a,
    .bll-service-card__link,
    .bll-services-note > a,
    .bll-footer-primary,
    .bll-project-facts__button,
    .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
    .bll-service-related > .bll-service-related__all
):focus > [aria-hidden="true"] {
    transform: translateX(5px) !important;
}

.bll-footer-phone {
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 1px;
    text-transform: none;
}

@media (prefers-reduced-motion: reduce) {
    :is(
        .bll-nav-cta,
        .bll-hero__button,
        a.btn,
        button.btn,
        .bll-company-contact__button,
        .bll-legal-aside__contact > a,
        .bll-legal-aside__contact > button,
        .bll-about-focus > a,
        .bll-about-contact > a,
        .bll-contact-location > a,
        .bll-contact-submit,
        .bll-reference-featured__button,
        .bll-references-note a,
        .bll-service-card__link,
        .bll-services-note > a,
        .bll-footer-primary,
        .bll-footer-phone,
        .bll-project-facts__button,
        .bll-service-contact-card > a:not(.bll-service-contact-card__phone),
        .bll-service-related > .bll-service-related__all
    ) {
        transition-duration: .01ms !important;
    }
}
