:root {
    --bg: #020202;
    --panel: #032338;
    --line: #303030;
    --text: #f3f3f3;
    --muted: #b8b8b8;
    --accent: #47963b;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Comfortaa', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Comfortaa', sans-serif;
}

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

.wrap {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.topbar {
    background: linear-gradient(180deg, #00304e 0%, #03243a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 12px;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    gap: 12px;
    min-height: 49px;
}

.lang-switch {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lang-switch a:not(.is-active) {
    opacity: 0.5;
}

.lang-switch a.is-active {
    opacity: 1;
}

.lang-switch a:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-1px);
}

.lang-switch a span {
    position: relative;
}

.lang-switch a span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: rgba(255, 255, 255, 0.62);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.lang-switch a:hover span::after,
.lang-switch a.is-active span::after {
    transform: scaleX(1);
}

.lang-flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border: 0;
    border-radius: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #0e4f76;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-main {
    padding: 18px 0 8px;
}

.header-main__inner {
    display: flex;
    align-items: center;
    gap: 44px;
    min-height: 130px;
}

.logo-link {
    width: 98px;
    height: 98px;
    flex: 0 0 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link img {
    width: 125px;
    height: 125px;
    object-fit: contain;
    display: block;
    transform: scale(1.28);
    transform-origin: center center;
}

.brand-text {
    display: flex;
    align-items: center;
    min-height: 98px;
    margin-left: 8px;
    font-size: 24px;
    line-height: 1.1;
    font-family: 'Comfortaa', sans-serif;
    letter-spacing: 0.5px;
    color: #f2f2f2;
}

.nav-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: -18px;
}

.mobile-nav-toggle {
    display: none;
}

.site-nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
}

.site-nav li {
    position: relative;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.site-nav li.has-children {
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.site-nav li > span,
.site-nav li > a {
    color: #fff;
    opacity: 0.9;
}

.site-nav li.has-children > span {
    display: inline-flex;
    align-items: center;
}

.site-nav li.has-children > span::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
}

.site-nav li:hover > a,
.site-nav li:hover > span {
    opacity: 1;
}

.site-nav li.is-active > a,
.site-nav li.is-active > span,
.site-nav li > a.is-active,
.site-nav li > span.is-active,
.site-nav .dropdown li.is-active > a,
.site-nav .dropdown a.is-active {
    color: #28ff2f;
    opacity: 1;
}

.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 310px;
    background: #0b3e63;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: none;
    z-index: 20;
}

.dropdown li {
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    color: #fff;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.09);
}

.has-children:hover .dropdown {
    display: block;
}

.main-content {
    padding-bottom: 80px;
}

.separator {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 30px 0;
}

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

.headline-block {
    text-align: center;
    margin: 40px 0 26px;
}

.headline-block h1,
.headline-block h2 {
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

.headline-block h1 {
    font-size: 38px;
    font-family: 'Comfortaa', sans-serif;
    letter-spacing: 0.3px;
}

.headline-block h2 {
    margin-top: 24px;
    font-size: 30px;
    font-family: 'Comfortaa', sans-serif;
}

.mt-xl {
    margin-top: 64px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 160px;
}

.ag-card {
    position: relative;
    display: block;
    border: 3px solid var(--card-border);
    --card-bg-bleed: 12px;
    --card-border-hover: #ff9d2e;
    --card-overlay-top: rgba(0, 0, 0, 0.42);
    --card-overlay-mid: rgba(0, 0, 0, 0.22);
    --card-overlay-bottom: rgba(0, 0, 0, 0.5);
    background: #070707;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    isolation: isolate;
    container-type: inline-size;
    transition: transform 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
}

.ag-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 0 0 2px rgba(255, 157, 46, 0.34), 0 0 18px rgba(255, 157, 46, 0.24);
    transform: translateY(-2px);
    filter: brightness(1.06);
}

@supports (color: color-mix(in srgb, #ffffff 50%, #000000 50%)) {
    .ag-card:hover {
        border-color: var(--card-border-hover);
        box-shadow: 0 0 0 2px color-mix(in srgb, var(--card-border-hover) 48%, transparent), 0 0 18px color-mix(in srgb, var(--card-border-hover) 34%, transparent);
    }
}

.ag-card::after {
    content: '';
    position: absolute;
    inset: 0;
    display: none;
    z-index: -1;
}

.ag-card__bg {
    position: absolute;
    inset: calc(var(--card-bg-bleed) * -1);
    display: block;
    background: #070707;
    z-index: -2;
}

.ag-card__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s ease, filter 0.32s ease;
}

.ag-card:hover .ag-card__bg-image {
    transform: scale(1.045);
    filter: brightness(1.12);
}

.ag-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px;
    text-align: center;
}

.ag-card__title {
    max-width: 100%;
    color: #f7f7f7;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(38px, 11.8cqi, 118px);
    line-height: 0.98;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.65);
}

.ag-card--title-compact .ag-card__title {
    font-size: clamp(26px, 8.4cqi, 82px);
    letter-spacing: 0.15px;
}

.ag-card--title-wrap .ag-card__title {
    max-width: 90%;
    white-space: normal;
    font-size: clamp(26px, 7.8cqi, 72px);
    line-height: 0.95;
    text-wrap: balance;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.ag-card__subtitle {
    position: absolute;
    right: 16px;
    bottom: 12px;
    max-width: min(66%, 420px);
    color: #f0f0f0;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(14px, 3.5cqi, 32px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-align: right;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.72);
}

.js .reveal-card {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.2, 0.65, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.services-grid.has-odd .ag-card--single {
    grid-column: 1 / -1;
    width: calc((100% - 30px) / 2);
    margin: 0 auto;
}

.facilities-grid,
.vip-grid {
    margin-top: 26px;
}

.facilities-grid {
    margin-bottom: 48px;
}

.vip-grid {
    margin-top: 0;
}

.rich-text {
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.8;
    color: #f3f3f3;
}

.rich-text h2,
.rich-text h3 {
    margin: 34px 0 12px;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.3;
    font-family: 'Comfortaa', sans-serif;
}

.rich-text ul {
    margin: 14px 0 14px 20px;
}

.gaming-room-page {
    margin-top: 64px;
}

.gaming-room-page__lead {
    max-width: min(960px, 100%);
    margin: 0 auto 18px;
    text-align: center;
    color: #f7f7f7;
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 1.2;
    font-family: 'Comfortaa', sans-serif;
}

.gaming-room-page__divider {
    width: min(960px, 100%);
    margin: 0 auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.gaming-room-page__lead + .gaming-room-page__divider {
    margin-bottom: 78px;
}

.gaming-room-page__copy {
    width: min(960px, 100%);
    margin: 0 auto;
}

.gaming-room-page__copy p {
    margin: 0 0 20px;
}

.gaming-room-page__copy p:last-child {
    margin-bottom: 0;
}

.gaming-room-page__copy + .gaming-room-page__divider {
    margin-top: 68px;
    margin-bottom: 78px;
}

.gaming-room-page__gallery {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}

.gaming-room-page__photo {
    margin: 0;
}

.gaming-room-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.kids-zone-page {
    margin-top: 86px;
}

.kids-zone-page__divider {
    width: min(1320px, 100%);
    margin: 0 auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.kids-zone-page__copy {
    width: min(1320px, 100%);
    margin: 66px auto 64px;
}

.kids-zone-page__copy p {
    margin: 0 0 20px;
}

.kids-zone-page__copy p:last-child {
    margin-bottom: 0;
}

.kids-zone-page__gallery {
    width: min(1320px, 100%);
    margin: 96px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.kids-zone-page__photo {
    margin: 0;
}

.kids-zone-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.vip-room-page {
    margin-top: 28px;
}

.vip-room-page__ghost {
    width: min(960px, 100%);
    min-height: 56px;
    margin: 0 auto 14px;
    border: 1px dashed rgba(255, 255, 255, 0.32);
}

.vip-room-page__divider {
    width: min(960px, 100%);
    margin: 0 auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.vip-room-page__copy {
    width: min(960px, 100%);
    margin: 96px auto 94px;
}

.vip-room-page__copy p {
    margin: 0 0 20px;
}

.vip-room-page__copy p:last-child {
    margin-bottom: 0;
}

.vip-room-page__photo {
    width: min(760px, 100%);
    margin: 96px auto 0;
}

.vip-room-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.work-room-page {
    margin-top: 88px;
}

.work-room-page__divider {
    width: min(960px, 100%);
    margin: 0 auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.work-room-page__copy {
    width: min(960px, 100%);
    margin: 94px auto 92px;
}

.work-room-page__copy p {
    margin: 0 0 20px;
}

.work-room-page__copy p:last-child {
    margin-bottom: 0;
}

.work-room-page__gallery {
    width: min(760px, 100%);
    margin: 98px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 74px;
}

.work-room-page__photo {
    margin: 0;
}

.work-room-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.living-room-page {
    margin-top: 86px;
}

.living-room-page__divider {
    width: min(1320px, 100%);
    margin: 0 auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.living-room-page__copy {
    width: min(1320px, 100%);
    margin: 66px auto 64px;
}

.living-room-page__copy p {
    margin: 0 0 20px;
}

.living-room-page__copy p:last-child {
    margin-bottom: 0;
}

.living-room-page__photo {
    width: min(1320px, 100%);
    margin: 98px auto 0;
}

.living-room-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.mini-museum-page {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.mini-museum-page__copy {
    margin-bottom: 58px;
}

.mini-museum-page__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.mini-museum-page__photo {
    margin: 0;
}

.mini-museum-page__photo--hero {
    grid-column: 1 / -1;
}

.mini-museum-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 980px) {
    .gaming-room-page {
        margin-top: 40px;
    }

    .gaming-room-page__lead {
        font-size: clamp(24px, 6.8vw, 34px);
    }

    .gaming-room-page__lead + .gaming-room-page__divider {
        margin-bottom: 44px;
    }

    .gaming-room-page__copy + .gaming-room-page__divider {
        margin-top: 42px;
        margin-bottom: 46px;
    }

    .gaming-room-page__gallery {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .kids-zone-page {
        margin-top: 42px;
    }

    .kids-zone-page__copy {
        margin: 44px auto 42px;
    }

    .kids-zone-page__gallery {
        margin-top: 46px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vip-room-page__copy {
        margin: 44px auto;
    }

    .vip-room-page__photo {
        margin-top: 46px;
    }

    .work-room-page {
        margin-top: 42px;
    }

    .work-room-page__copy {
        margin: 44px auto 42px;
    }

    .work-room-page__gallery {
        margin-top: 46px;
        gap: 24px;
    }

    .living-room-page {
        margin-top: 42px;
    }

    .living-room-page__copy {
        margin: 44px auto 42px;
    }

    .living-room-page__photo {
        margin-top: 46px;
    }

    .mini-museum-page__gallery {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .mini-museum-page__photo--hero {
        grid-column: auto;
    }
}

.maintenance-offer h2 {
    font-size: 25px;
    line-height: 1.3;
}

.page-text {
    min-height: 40vh;
    margin-top: 0;
    padding-top: 0;
}

.page-text img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-text p > img:only-child,
.page-text p > a:only-child > img {
    width: min(100%, 860px);
}

.google-reviews-page {
    display: grid;
    gap: 18px;
}

.google-reviews-page__lead {
    margin: 0;
    font-size: 19px;
    line-height: 1.65;
}

.google-reviews-page__embed {
    position: relative;
    width: min(100%, 1200px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    overflow: hidden;
    background: #0b1016;
}

.google-reviews-page__embed iframe {
    display: block;
    width: 100%;
    height: 72vh;
    min-height: 460px;
    border: 0;
}

.google-reviews-page__cards {
    width: min(100%, 1200px);
    display: grid;
    gap: 14px;
}

.google-reviews-page__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(11, 16, 22, 0.84);
}

.google-reviews-page__summary-label {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    line-height: 1.1;
}

.google-reviews-page__summary-stars {
    color: #ffcb45;
    letter-spacing: 0.12em;
    font-size: 18px;
    line-height: 1;
}

.google-reviews-page__summary-value {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    line-height: 1;
}

.google-reviews-page__summary-count {
    color: rgba(227, 234, 242, 0.84);
    font-size: 15px;
}

.google-review-card {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(11, 16, 22, 0.84);
    padding: 14px 14px 12px;
    display: grid;
    gap: 10px;
}

.google-review-card__stars {
    color: #ffcb45;
    letter-spacing: 0.11em;
    font-size: 16px;
    line-height: 1;
}

.google-review-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.62;
    color: rgba(238, 244, 251, 0.94);
}

.google-review-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.google-review-card__author,
.google-review-card__author:visited {
    color: #d4eeff;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 238, 255, 0.42);
    line-height: 1.3;
}

.google-review-card__author:hover,
.google-review-card__author:focus-visible {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.86);
}

.google-review-card__date {
    color: rgba(220, 228, 236, 0.78);
    font-size: 14px;
    line-height: 1.3;
}

.google-reviews-page__link {
    margin: 0;
}

.google-reviews-page__link a {
    display: inline-block;
    padding: 11px 16px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #f3f3f3;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.google-reviews-page__link a:hover,
.google-reviews-page__link a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.sales-offer-panel {
    margin-top: 20px;
    display: grid;
    gap: 22px;
}

.sales-offer-panel__lead {
    margin: 0;
    color: rgba(239, 246, 255, 0.94);
    font-size: 19px;
    line-height: 1.6;
}

.sales-offer-list {
    margin-top: 0;
    display: grid;
    gap: 22px;
}

.sales-offer-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(10, 18, 26, 0.94), rgba(7, 12, 19, 0.96));
    display: grid;
    grid-template-columns: minmax(0, 36%) minmax(0, 64%);
    align-items: start;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.sales-offer-card__media {
    position: relative;
    align-self: start;
    min-height: 280px;
    background: #070b10;
    overflow: hidden;
}

.sales-offer-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.36));
    pointer-events: none;
}

.sales-offer-card__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sales-offer-card__media-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(58, 114, 171, 0.32), transparent 54%),
        radial-gradient(circle at 80% 72%, rgba(121, 148, 184, 0.26), transparent 52%),
        linear-gradient(140deg, #111c2a, #081017 72%);
}

.sales-offer-card__content {
    padding: 22px 24px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.sales-offer-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sales-offer-card__title {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    word-break: break-word;
}

.sales-offer-card__price {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #d7f4ad;
    border: 1px solid rgba(139, 197, 64, 0.46);
    background: rgba(92, 140, 31, 0.2);
    border-radius: 999px;
    padding: 7px 14px;
    white-space: nowrap;
}

.sales-offer-card__excerpt {
    margin: 0;
    color: rgba(231, 238, 246, 0.92);
    font-size: 18px;
    line-height: 1.58;
}

.sales-offer-card__cta {
    margin: 0;
}

.sales-offer-card__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
    color: #f3f7fc;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    letter-spacing: 0.25px;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.sales-offer-card__cta-link:hover,
.sales-offer-card__cta-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
    transform: translateY(-1px);
}

.sales-car-detail {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 20px 22px 22px;
    background: linear-gradient(140deg, rgba(10, 18, 26, 0.94), rgba(7, 12, 19, 0.96));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.sales-car-detail__back {
    margin: 0 0 12px;
    text-align: right;
}

.sales-car-detail__back a {
    color: #d7f4ad;
    text-decoration: none;
    border-bottom: 1px solid rgba(215, 244, 173, 0.55);
}

.sales-car-detail__back a::before {
    content: '\2190\00a0';
}

.sales-car-detail__head {
    margin: 0;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
}

.sales-car-detail__title {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    word-break: break-word;
    text-align: center;
    width: 100%;
}

.sales-car-detail__price {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #d7f4ad;
    border: 1px solid rgba(139, 197, 64, 0.46);
    background: rgba(92, 140, 31, 0.2);
    border-radius: 999px;
    padding: 7px 14px;
    white-space: nowrap;
}

.sales-car-detail__content {
    margin-top: 18px;
}

.sales-car-detail__content::after {
    content: '';
    display: block;
    clear: both;
}

.sales-car-detail__figure {
    float: right;
    width: min(37.5%, 400px);
    margin: 0 0 14px 22px;
    border-radius: 12px;
    overflow: hidden;
    background: #070b10;
}

.sales-car-detail__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.sales-car-detail__body {
    color: rgba(239, 245, 252, 0.93);
}

.sales-car-detail__body.rich-text h2,
.sales-car-detail__body.rich-text h3 {
    font-size: 26px;
    line-height: 1.28;
}

.sales-car-detail__body > :first-child {
    margin-top: 0;
}

.sales-car-detail__body > :last-child {
    margin-bottom: 0;
}

.sales-offer-card__details {
    margin: 0;
}

.sales-offer-card__details summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    letter-spacing: 0.25px;
    user-select: none;
}

.sales-offer-card__details summary::-webkit-details-marker {
    display: none;
}

.sales-offer-card__details .label-open {
    display: none;
}

.sales-offer-card__details[open] .label-closed {
    display: none;
}

.sales-offer-card__details[open] .label-open {
    display: inline;
}

.sales-offer-card__body {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(239, 245, 252, 0.93);
}

.sales-offer-card__body h1,
.sales-offer-card__body h2,
.sales-offer-card__body h3 {
    font-size: 28px;
    line-height: 1.24;
}

.sales-offer-card__body > :first-child {
    margin-top: 0;
}

.sales-offer-card__body > :last-child {
    margin-bottom: 0;
}

.sales-offer-empty {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 16px 18px;
    background: rgba(9, 16, 24, 0.82);
}

.video-embed {
    width: 100%;
    margin: 22px 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #000;
}

.video-embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

.legacy-offer-layout {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.legacy-offer-layout > :first-child {
    margin-top: 0;
}

.legacy-offer-row {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    gap: 34px;
    align-items: center;
}

.legacy-offer-row__media p {
    margin: 0;
}

.legacy-offer-row__media img {
    width: 100%;
    max-width: 100%;
}

.legacy-offer-row__body > :first-child {
    margin-top: 0;
}

.legacy-offer-row__body > :last-child {
    margin-bottom: 0;
}

.legacy-offer-row__body h2,
.legacy-offer-row__body h3 {
    margin: 0 0 12px;
}

.tuning-service-callout,
.legacy-offer-layout--tuning .tuning-service-callout {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.tuning-service-custom section > div > p[style*="clamp(16px,1.35vw,24px)"] {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.quote-form-wrap {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 28px 30px;
    border: 1px solid rgba(67, 112, 161, 0.52);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(7, 20, 34, 0.78) 0%, rgba(3, 8, 14, 0.78) 100%);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.quote-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2735b8 0%, #28ff2f 100%);
}

.quote-form-title {
    margin: 0 calc(50% - 50vw) 40px;
    padding: 24px;
    background: #2735b8;
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.quote-form-stack {
    max-width: 920px;
    margin: 54px auto 0;
}

.quote-form-stack .quote-form-wrap {
    margin: 0 auto;
}

.quote-form-section-title {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 500;
    line-height: 1.14;
    text-align: center;
}

.other-brands-page {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 68px 0 34px;
}

.other-brands-page__intro {
    width: min(1140px, 100%);
    margin: 0 auto 66px;
    text-align: center;
}

.other-brands-page__intro p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.85;
}

.other-brands-page__intro p:last-child {
    margin-bottom: 0;
}

.quote-alert {
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.24);
    font-size: 15px;
}

.quote-alert--success {
    border-color: rgba(123, 202, 78, 0.52);
    background: rgba(93, 170, 50, 0.14);
    color: #d0f6b8;
}

.quote-alert--error {
    border-color: rgba(229, 102, 102, 0.5);
    background: rgba(197, 63, 63, 0.13);
    color: #ffd2d2;
}

.quote-form {
    display: grid;
    gap: 20px;
}

.quote-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100%);
    white-space: nowrap;
}

.quote-field {
    display: grid;
    gap: 10px;
}

.quote-label {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quote-input-wrap {
    position: relative;
}

.quote-input,
.quote-textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 10px;
    background: rgba(8, 15, 22, 0.76);
    color: #fff;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.quote-textarea {
    resize: vertical;
    min-height: 190px;
}

.quote-input::placeholder,
.quote-textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.quote-input:focus,
.quote-textarea:focus {
    border-color: #4cd5ff;
    background: rgba(11, 20, 29, 0.9);
    box-shadow: 0 0 0 3px rgba(39, 53, 184, 0.28);
}

.quote-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.93);
    cursor: pointer;
}

.quote-consent input {
    width: 22px;
    height: 22px;
    margin: 0;
    margin-top: 2px;
    accent-color: #8bc540;
    flex-shrink: 0;
}

.quote-actions {
    padding-top: 2px;
}

.quote-submit {
    width: 170px;
    height: 60px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #8bc540 0%, #74b832 100%);
    color: #03243a;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    cursor: pointer;
    transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
    box-shadow: 0 8px 18px rgba(139, 197, 64, 0.28);
}

.quote-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.quote-submit:active {
    transform: translateY(0);
}

.about-page {
    display: grid;
    gap: 72px;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 332px;
    gap: 42px;
    align-items: start;
}

.about-page h2 {
    margin: 0 0 14px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
}

.about-page p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.6;
}

.about-signature {
    margin-top: 26px;
    text-align: right;
}

.about-block__media img {
    display: block;
    width: 100%;
    height: auto;
}

.about-block__media--circle img {
    border-radius: 50%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 12px 0;
    align-items: stretch;
}

.gallery-item {
    display: block;
    border: 1px solid rgba(242, 242, 242, 0.55);
    border-radius: 4px;
    background: #050505;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.08);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: zoom-out;
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(94vw, 1480px);
    height: min(92vh, 980px);
    margin: 4vh auto;
    display: grid;
    grid-template-columns: 74px 1fr 74px;
    grid-template-rows: 1fr;
    align-items: center;
}

.gallery-lightbox__figure {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
}

.gallery-lightbox__image {
    max-width: 100%;
    max-height: calc(100% - 44px);
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.55);
    background: #050505;
}

.gallery-lightbox__caption {
    min-height: 24px;
    padding: 0 18px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(8, 27, 41, 0.86);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    transform: scale(1.05);
    border-color: #fff;
    background: rgba(18, 67, 99, 0.95);
}

.gallery-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 36px;
    line-height: 1;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
}

.gallery-lightbox__nav {
    font-size: 38px;
    line-height: 1;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
}

.gallery-lightbox__nav--prev {
    justify-self: center;
}

.gallery-lightbox__nav--next {
    justify-self: center;
}

.gallery-lightbox.is-single .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
}

.gallery-lightbox.is-single .gallery-lightbox__nav {
    display: none;
}

body.lightbox-open {
    overflow: hidden;
}

.contact-page {
    display: grid;
    grid-template-columns: minmax(300px, 560px) minmax(320px, 1fr);
    grid-template-areas:
        "content map"
        "divider divider"
        "social social";
    align-items: start;
    gap: 36px 42px;
    min-height: 860px;
    padding-top: 18px;
}

.contact-page__content {
    grid-area: content;
    max-width: 560px;
}

.contact-page h2 {
    margin: 0 0 28px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.3px;
}

.contact-page p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #f5f5f5;
}

.contact-page p strong {
    font-weight: 500;
}

.contact-page__space {
    margin-top: 30px !important;
}

.contact-page a {
    color: #f5f5f5;
}

.contact-page__divider {
    grid-area: divider;
    border: 0;
    border-top: 1px solid var(--line);
    margin: 4px 0 0;
}

.contact-page__social-wrap {
    grid-area: social;
    text-align: center;
    padding-bottom: 10px;
}

.contact-page__social-wrap h3 {
    margin: 0 0 20px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.contact-page__map {
    grid-area: map;
    margin: 0;
    display: grid;
    gap: 14px;
    width: 100%;
}

.contact-page__map-heading {
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.contact-page__map .google-reviews-page__embed {
    width: 100%;
}

.contact-page__map .google-reviews-page__embed iframe {
    height: 100%;
    min-height: 420px;
    aspect-ratio: 16 / 11;
}

.contact-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00385a;
    color: #8fc641;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-social a:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.contact-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.premium-service {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: -6px;
}

.premium-service-hero {
    position: relative;
    margin: 0 calc(50% - 50vw);
    background: #000;
    overflow: hidden;
    isolation: isolate;
}

.premium-service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #000 url('/assets/images/services/premium/hero-bg.jpg') center center / cover no-repeat;
    transform: scale(1.06);
    animation: premium-hero-bg-motion 18s ease-in-out infinite alternate;
    z-index: -2;
}

.premium-service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.premium-service-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 332px;
    gap: 44px;
    align-items: center;
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 52px;
}

@keyframes premium-hero-bg-motion {
    0% {
        transform: scale(1.05) translate3d(-1.2%, 0, 0);
    }
    50% {
        transform: scale(1.08) translate3d(1%, -0.6%, 0);
    }
    100% {
        transform: scale(1.06) translate3d(0, 0.8%, 0);
    }
}

@keyframes offer-bg-motion {
    0% {
        background-position: 50% 50%;
        background-size: 104%;
    }
    50% {
        background-position: 49% 47%;
        background-size: 108%;
    }
    100% {
        background-position: 52% 51%;
        background-size: 105%;
    }
}

.dyno-service-highlight::before,
.storage-service__person--wojciech,
.storage-service__person--mariusz,
.electro-service__expert,
.tire-service__hero,
.geometry-service__hero,
.engine-service__hero,
.wash-service__person--sebastian,
.detailing-service__expert {
    animation: offer-bg-motion 20s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .premium-service-hero::after {
        animation: none;
        transform: none;
    }

    .dyno-service-highlight::before,
    .storage-service__person--wojciech,
    .storage-service__person--mariusz,
    .electro-service__expert,
    .tire-service__hero,
    .geometry-service__hero,
    .engine-service__hero,
    .wash-service__person--sebastian,
    .detailing-service__expert {
        animation: none;
    }

    .js .reveal-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.premium-service-hero__text h2 {
    margin: 0 0 20px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82), 0 1px 2px rgba(0, 0, 0, 0.95);
}

.premium-service-hero__text p {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.7;
    color: #f6f6f6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78), 0 1px 2px rgba(0, 0, 0, 0.92);
}

.premium-service-hero__photo {
    justify-self: end;
    width: min(100%, 330px);
}

.premium-service-hero__photo img {
    display: block;
    width: 100%;
    border-radius: 0;
}

.premium-service-rows {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.premium-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    width: 100%;
}

.premium-service-row__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.premium-service-row--clickable {
    grid-template-columns: 1fr;
}

.premium-service-row--clickable > .premium-service-row__link {
    grid-column: 1 / -1;
    width: 100%;
}

.premium-service-row__image {
    border: 0;
    background: #050505;
    overflow: hidden;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.premium-service-row__image p {
    margin: 0;
}

.premium-service-row__image img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
}

.premium-service-row__content {
    color: #f5f5f5;
    font-size: 16px;
    line-height: 1.7;
}

.premium-service-row__content h2,
.premium-service-row__content h3 {
    margin: 0 0 16px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.premium-service-row__content p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #f5f5f5;
}

.premium-service-row__content p:last-child {
    margin-bottom: 0;
}

.premium-service-row--clickable:hover .premium-service-row__image {
    box-shadow: 0 10px 24px rgba(1, 91, 218, 0.28), 0 0 0 1px rgba(30, 140, 255, 0.24);
    transform: translateY(-1px);
}

.premium-service-row--clickable:hover .premium-service-row__content h2,
.premium-service-row--clickable:hover .premium-service-row__content h3 {
    color: #e9f3ff;
    text-decoration: underline;
    text-decoration-color: rgba(73, 154, 255, 0.6);
    text-underline-offset: 3px;
}

.premium-service-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    margin: 2px 0 0;
}

.premium-service-copy h2,
.premium-service-copy h3 {
    margin: 0 0 20px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.premium-service-copy h2 {
    font-size: 30px;
    text-align: center;
}

.premium-service-copy h3 {
    margin-top: 34px;
    font-size: 24px;
}

.premium-service-copy p,
.premium-service-copy li {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
}

.premium-service-copy ul {
    margin: 0 0 18px 22px;
    padding: 0;
}

.bmw-service-page {
    display: grid;
    gap: 28px;
    text-align: center;
}

.bmw-service-page__lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

.bmw-service-page__section {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.bmw-service-page__section h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.bmw-service-gallery {
    width: min(1240px, 100%);
    justify-self: stretch;
    margin: 4px auto 0;
}

.bmw-service-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.bmw-service-checklist li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 8px;
    align-items: start;
    margin: 0;
    padding-left: 0;
    text-align: left;
    font-size: 28px;
    line-height: 1.35;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.bmw-service-checklist li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin-top: calc((1.35em - 16px) / 2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Crect x='0.75' y='0.75' width='14.5' height='14.5' rx='3' fill='%2325b64d'/%3E%3Cpath d='M4.1 8.15 6.35 10.4 11.9 4.85' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dyno-service {
    display: grid;
    gap: 44px;
}

.dyno-service-intro {
    width: min(980px, calc(100% - 34px));
    margin: 0 auto;
    text-align: center;
}

.dyno-service-intro--title {
    width: 100%;
    margin: 0;
}

.dyno-service-intro--details {
    width: min(1240px, calc(100% - 34px));
    text-align: left;
}

.dyno-service-intro h1,
.dyno-service-intro h2,
.dyno-service-intro h3 {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.dyno-service-intro--title :is(h1, h2, h3) {
    margin: 0 calc(50% - 50vw) 24px;
    min-height: 82px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2735b8;
    font-size: clamp(29px, 2.2vw, 36px);
    line-height: 1.15;
}

.dyno-service-intro h2 {
    font-size: 18px;
}

.dyno-service-intro p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.72;
    text-align: left;
}

.dyno-service-intro--details h2,
.dyno-service-intro--details h3 {
    text-align: center;
}

.dyno-service-intro--details p {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.dyno-service-intro hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    margin: 34px 0 0;
}

.dyno-service-highlight {
    position: relative;
    margin: 0 calc(50% - 50vw);
    background: #000;
    overflow: hidden;
    isolation: isolate;
}

.dyno-service-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000 url('/assets/images/services/hamownia/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.5;
    z-index: -2;
}

.dyno-service-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.58) 100%);
    z-index: -1;
}

.dyno-service-highlight__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
    gap: 34px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 62px 22px;
}

.dyno-service-highlight__text h1,
.dyno-service-highlight__text h2,
.dyno-service-highlight__text h3 {
    margin: 0 0 16px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.dyno-service-highlight__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: #f6f6f6;
}

.dyno-service-highlight__photo {
    justify-self: end;
    width: min(100%, 355px);
}

.dyno-service-highlight__photo img {
    display: block;
    width: 100%;
    border-radius: 0;
}

.dyno-service-offer {
    width: min(1200px, calc(100% - 34px));
    margin: 0 auto;
    text-align: center;
}

.dyno-service-offer__title {
    margin: 0 0 26px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.dyno-service-offer__content {
    padding: 30px 12px 26px;
    text-align: center;
}

.dyno-service-offer__content h2,
.dyno-service-offer__content h3 {
    margin: 0 0 8px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.dyno-service-offer__content p,
.dyno-service-offer__content li,
.dyno-service-offer__content b {
    font-size: 16px;
    line-height: 1.72;
}

.dyno-service-offer__content p {
    margin: 0 0 18px;
}

.dyno-service-offer__content b {
    display: inline-block;
    margin: 6px 0 12px;
}

.dyno-service-offer__content p:last-child {
    margin-bottom: 0;
}

.dyno-service-offer__content h3 + p,
.dyno-service-offer__content h2 + p {
    margin-top: 10px;
}

.dyno-service-offer__content hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    width: 100%;
    margin: 30px 0 0;
}

.dyno-service-offer__content hr:not(:last-of-type) {
    display: none;
}

.dyno-service-offer__content p.dyno-service-offer__cta {
    margin: 50px 0 50px;
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(16px, 1.35vw, 24px);
    font-weight: 700;
    line-height: 1.36;
    text-align: center;
    color: #ffffff;
}

.dyno-service-offer__content p.dyno-service-offer__cta strong,
.dyno-service-offer__content p.dyno-service-offer__cta b {
    font: inherit;
    color: inherit;
}

.dyno-service-seo {
    width: min(1320px, calc(100% - 34px));
    margin: 0 auto;
}

.dyno-service-seo__inner {
    display: block;
}

.dyno-service-seo__photo {
    display: none;
}

.dyno-service-seo__text h2,
.dyno-service-seo__text h3 {
    margin: 28px 0 20px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

.dyno-service-seo__text h2:first-child,
.dyno-service-seo__text h3:first-child {
    margin-top: 0;
}

.dyno-service-seo__text p,
.dyno-service-seo__text li {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.72;
    text-align: left;
}

.dyno-service-seo__text ul {
    margin: 0 0 14px 20px;
    padding: 0;
}

.courtesy-cars {
    display: grid;
    gap: 34px;
}

.courtesy-cars__intro {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.courtesy-cars__intro .courtesy-cars__subtitle {
    margin: 0 0 22px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
}

.courtesy-cars__intro p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.75;
    text-align: left;
}

.courtesy-cars__intro p:last-child {
    margin-bottom: 0;
}

.courtesy-cars__gallery {
    width: min(1300px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.courtesy-cars__gallery-heading {
    grid-column: 1 / -1;
    margin: 0;
    padding: 6px 0 2px;
}

.courtesy-cars__gallery-heading:not(:first-child) {
    margin-top: 12px;
}

.courtesy-cars__gallery-heading h3 {
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-align: center;
}

.courtesy-cars__gallery-item p {
    margin: 0;
}

.courtesy-cars__gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

.storage-service {
    display: grid;
    gap: 0;
}

.storage-service__intro,
.storage-service__tires {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.storage-service__tires {
    padding-top: 52px;
    padding-bottom: 34px;
}

.storage-service__heading {
    margin: 0 0 22px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.storage-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.storage-service__copy p {
    margin: 0 0 12px;
}

.storage-service__copy p:last-child {
    margin-bottom: 0;
}

.storage-service__person {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.storage-service__person::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.storage-service__person--wojciech {
    background-image: url('/assets/images/services/storage/bg-wojciech.jpg');
}

.storage-service__person--mariusz {
    background-image: url('/assets/images/services/storage/bg-mariusz.jpg');
}

.storage-service__person-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.storage-service__person-text {
    font-size: 17px;
    line-height: 1.85;
}

.storage-service__person-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.storage-service__person-text p {
    margin: 0 0 10px;
}

.storage-service__person-text p:last-child {
    margin-bottom: 0;
}

.storage-service__photo,
.storage-service__photo p {
    margin: 0;
}

.storage-service__photo img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.storage-service__photo p > img:only-child,
.storage-service__photo p > a:only-child > img {
    width: 100%;
    max-width: none;
}

.electro-service {
    display: grid;
    gap: 0;
}

.electro-service__intro,
.electro-service__scope,
.electro-service__seo {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.electro-service__intro {
    padding: 18px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.electro-service__heading {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.electro-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.electro-service__copy p {
    margin: 0 0 12px;
}

.electro-service__copy p:last-child {
    margin-bottom: 0;
}

.electro-service__expert {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-image: url('/assets/images/services/electro/bg-expert.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.electro-service__expert::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.electro-service__expert-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.electro-service__expert-text {
    font-size: 17px;
    line-height: 1.85;
}

.electro-service__expert-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.electro-service__expert-text p {
    margin: 0 0 10px;
}

.electro-service__expert-text p:last-child {
    margin-bottom: 0;
}

.electro-service__expert-photo,
.electro-service__expert-photo p {
    margin: 0;
}

.electro-service__expert-photo img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.electro-service__scope {
    padding: 12px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.electro-service__copy--scope {
    margin: 0 auto;
}

.electro-service__copy--scope p {
    margin: 0 0 14px;
}

.electro-service__seo {
    padding: 42px 0 10px;
}

.electro-service__seo-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.18;
}

.electro-service__copy--seo h2,
.electro-service__copy--seo h3 {
    margin: 28px 0 12px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.electro-service__copy--seo ul {
    margin: 0 0 14px 20px;
    padding: 0;
}

.tire-service {
    display: grid;
    gap: 0;
}

.tire-service__intro,
.tire-service__scope,
.tire-service__seo {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.tire-service__intro {
    padding: 18px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.tire-service__heading,
.tire-service__scope-heading {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.tire-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.tire-service__copy p {
    margin: 0 0 12px;
}

.tire-service__copy p:last-child {
    margin-bottom: 0;
}

.tire-service__hero {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-image: url('/assets/images/services/wulkanizacja/bg-hero.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tire-service__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.tire-service__hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.tire-service__hero-text {
    font-size: 17px;
    line-height: 1.85;
}

.tire-service__hero-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.tire-service__hero-text p {
    margin: 0 0 10px;
}

.tire-service__hero-text p:last-child {
    margin-bottom: 0;
}

.tire-service__hero-photo,
.tire-service__hero-photo p {
    margin: 0;
}

.tire-service__hero-photo img {
    display: block;
    width: 100% !important;
    max-width: none;
    height: auto;
}

.tire-service__scope {
    padding: 12px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.tire-service__copy--scope {
    width: min(900px, 100%);
    margin: 0 auto;
}

.tire-service__copy--scope p {
    margin: 0 0 14px;
}

.tire-service__seo {
    padding: 42px 0 10px;
}

.tire-service__seo-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.18;
}

.tire-service__copy--seo h2,
.tire-service__copy--seo h3 {
    margin: 28px 0 12px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.tire-service__copy--seo ul {
    margin: 0 0 14px 20px;
    padding: 0;
}

.geometry-service {
    display: grid;
    gap: 0;
}

.geometry-service__intro,
.geometry-service__scope {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.geometry-service__intro {
    padding: 18px 0 34px;
}

.geometry-service__heading,
.geometry-service__scope-heading {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.geometry-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.geometry-service__copy p {
    margin: 0 0 12px;
}

.geometry-service__copy p:last-child {
    margin-bottom: 0;
}

.geometry-service__hero {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-image: url('/assets/images/services/geometria/bg-hero.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.geometry-service__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.geometry-service__hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.geometry-service__hero-text {
    font-size: 17px;
    line-height: 1.85;
}

.geometry-service__hero-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.geometry-service__hero-text p {
    margin: 0 0 10px;
}

.geometry-service__hero-text p:last-child {
    margin-bottom: 0;
}

.geometry-service__hero-photo,
.geometry-service__hero-photo p {
    margin: 0;
}

.geometry-service__hero-photo img {
    display: block;
    width: 100% !important;
    max-width: none;
    height: auto;
}

.geometry-service__scope {
    padding: 12px 0 34px;
}

.geometry-service__copy--scope {

    margin: 0 auto;
}

.geometry-service__copy--scope p {
    margin: 0 0 14px;
}

.engine-service {
    display: grid;
    gap: 0;
}

.engine-service__intro,
.engine-service__scope,
.engine-service__seo {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.engine-service__intro {
    padding: 18px 0 34px;
}

.engine-service__heading,
.engine-service__scope-heading {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.engine-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.engine-service__copy p {
    margin: 0 0 12px;
}

.engine-service__copy p:last-child {
    margin-bottom: 0;
}

.engine-service__hero {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-image: url('/assets/images/services/remonty/bg-hero.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.engine-service__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.engine-service__hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.engine-service__hero-text {
    font-size: 17px;
    line-height: 1.85;
}

.engine-service__hero-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.engine-service__hero-text p {
    margin: 0 0 10px;
}

.engine-service__hero-text p:last-child {
    margin-bottom: 0;
}

.engine-service__hero-photo,
.engine-service__hero-photo p {
    margin: 0;
}

.engine-service__hero-photo img {
    display: block;
    width: 100% !important;
    max-width: none;
    height: auto;
}

.engine-service__scope {
    padding: 12px 0 34px;
}

.engine-service__copy--scope {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.engine-service__copy--scope p {
    margin: 0 0 14px;
}

.engine-service__seo {
    padding: 42px 0 10px;
}

.engine-service__seo-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.18;
}

.engine-service__copy--seo h2,
.engine-service__copy--seo h3 {
    margin: 28px 0 12px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.engine-service__copy--seo ul {
    margin: 0 0 14px 20px;
    padding: 0;
}

.wash-service {
    display: grid;
    gap: 0;
}

.wash-service__intro,
.wash-service__scope {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.wash-service__intro {
    padding: 18px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.wash-service__heading,
.wash-service__scope-heading {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.wash-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.wash-service__copy p {
    margin: 0 0 12px;
}

.wash-service__copy p:last-child {
    margin-bottom: 0;
}

.wash-service__person {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wash-service__person::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.wash-service__person--sebastian {
    background-image: url('/assets/images/services/myjnia/bg-sebastian.jpg');
}

.wash-service__person--szymon {
    background: #050505;
}

.wash-service__person-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.wash-service__person--szymon .wash-service__person-inner {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
}

.wash-service__person-text {
    font-size: 17px;
    line-height: 1.85;
}

.wash-service__person-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.wash-service__person-text p {
    margin: 0 0 10px;
}

.wash-service__person-text p:last-child {
    margin-bottom: 0;
}

.wash-service__person-photo,
.wash-service__person-photo p {
    margin: 0;
}

.wash-service__person-photo img {
    display: block;
    width: 100% !important;
    max-width: none;
    height: auto;
}

.wash-service__scope {
    padding: 12px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.wash-service__copy--scope {
    width: min(980px, 100%);
    margin: 0 auto;
}

.wash-service__copy--scope p {
    margin: 0 0 14px;
}

.detailing-service {
    display: grid;
    gap: 0;
}

.detailing-service__intro,
.detailing-service__offer,
.detailing-service__seo {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.detailing-service__intro {
    padding: 18px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.detailing-service__heading,
.detailing-service__offer-heading {
    font-family: 'Comfortaa', sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
}

.detailing-service__heading {
    margin: 0 0 24px;
}

.detailing-service__offer-heading {
    margin: 86px 0 74px;
}

.detailing-service__copy {
    font-size: 17px;
    line-height: 1.85;
}

.detailing-service__copy p {
    margin: 0 0 12px;
}

.detailing-service__copy p:last-child {
    margin-bottom: 0;
}

.detailing-service__copy ul {
    margin: 0 0 14px 22px;
    padding: 0;
}

.detailing-service__copy li {
    margin: 0 0 8px;
}

.moto-ppf-checklist {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.moto-ppf-checklist li {
    list-style: none;
    margin: 0 0 8px;
}

.moto-ppf-checklist li::marker {
    content: '';
}

.detailing-service__expert {
    margin: 44px calc(50% - 50vw);
    padding: 58px 0;
    position: relative;
    background-image: url('/assets/images/services/myjnia/bg-sebastian.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.detailing-service__expert::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.detailing-service__expert-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 34px;
}

.detailing-service__expert-text {
    font-size: 17px;
    line-height: 1.85;
}

.detailing-service__expert-heading {
    margin: 0 0 18px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
}

.detailing-service__expert-text p {
    margin: 0 0 10px;
}

.detailing-service__expert-text p:last-child {
    margin-bottom: 0;
}

.detailing-service__expert-photo,
.detailing-service__expert-photo p {
    margin: 0;
}

.detailing-service__expert-photo img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.detailing-service__offer {
    padding: 0 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.detailing-service__rows {
    margin-top: 30px;
    display: grid;
    gap: 34px;
}

.detailing-service__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.detailing-service__row-image,
.detailing-service__row-image p {
    margin: 0;
}

.detailing-service__row-content h2,
.detailing-service__row-content h3 {
    margin: 0 0 12px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
}

.detailing-service__row-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.detailing-service__row-box {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2500 / 1446;
    min-height: 214px;
    padding: 18px 20px;
    border: 2px solid #1cff2f;
    background: #000;
    color: rgba(244, 244, 244, 0.65);
    text-align: center;
    font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(23px, 2.5vw, 43px);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.02;
    text-transform: none;
    transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.detailing-service__row-box--image {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)),
        var(--detailing-row-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.detailing-service__row-box--ppf-motorcycle.detailing-service__row-box--image {
    background-image: var(--detailing-row-bg);
}

.detailing-service__row-link--box:hover .detailing-service__row-box,
.detailing-service__row-link--box:focus-visible .detailing-service__row-box {
    border-color: #72ff7f;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 1px rgba(28, 255, 47, 0.3) inset;
}

.detailing-service__row-heading-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.detailing-service__row-heading-link:hover,
.detailing-service__row-heading-link:focus-visible {
    color: #dcffdc;
}

.detailing-service__row-content p {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.78;
}

.detailing-service__seo {
    padding: 38px 0 10px;
}

.detailing-service__copy--seo h2,
.detailing-service__copy--seo h3 {
    margin: 28px 0 12px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.detailing-service__closing-gallery {
    margin: 34px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.detailing-service__closing-gallery-item {
    margin: 0;
}

.detailing-service__closing-gallery-item img {
    display: block;
    width: 100%;
    max-width: none;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.detailing-service__realizations-heading {
    margin: 0 0 24px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.detailing-realizations {
    --detailing-visible: 3;
    --detailing-gap: 16px;
    margin: 0 calc(var(--detailing-gap) * -0.5) 30px;
}

.detailing-realizations__viewport {
    width: 100%;
    overflow: hidden;
}

.detailing-realizations__track {
    display: flex;
    align-items: stretch;
    transition: transform 0.62s ease;
    will-change: transform;
}

.detailing-realizations__slide {
    margin: 0;
    padding: 0 calc(var(--detailing-gap) * 0.5);
    flex: 0 0 calc(100% / var(--detailing-visible));
}

.detailing-realizations__slide img {
    display: block;
    width: 100%;
    max-width: none;
    height: 420px;
    object-fit: cover;
}

.detailing-service__realizations-divider {
    margin: 0 0 24px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.premium-service-rows,
.dyno-service-intro,
.dyno-service-intro--details,
.dyno-service-highlight__inner,
.dyno-service-offer,
.dyno-service-seo,
.courtesy-cars__intro,
.courtesy-cars__gallery,
.storage-service__intro,
.storage-service__tires,
.storage-service__person-inner,
.electro-service__intro,
.electro-service__scope,
.electro-service__seo,
.electro-service__expert-inner,
.tire-service__intro,
.tire-service__scope,
.tire-service__seo,
.tire-service__hero-inner,
.geometry-service__intro,
.geometry-service__scope,
.geometry-service__hero-inner,
.engine-service__intro,
.engine-service__scope,
.engine-service__seo,
.engine-service__hero-inner,
.wash-service__intro,
.wash-service__scope,
.wash-service__person-inner,
.wash-service__person--szymon .wash-service__person-inner,
.detailing-service__intro,
.detailing-service__offer,
.detailing-service__seo,
.detailing-service__expert-inner {
    width: min(1400px, calc(100% - 48px));
}

.subpage-banner {
    margin: 24px calc(50% - 50vw) 44px;
    padding: 0 24px;
    min-height: 96px;
    background: #2735b8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-banner h1 {
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
}

.subpage-banner--preserve-case h1 {
    text-transform: none;
    letter-spacing: 0;
}

.site-footer {
    background: #367f27;
    padding: 24px 0 18px;
    color: #ffffff;
}

.footer-inner {
    text-align: center;
    font-size: 14px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    color: #ffffff;
    text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
    color: #f5ffe9;
}

.footer-company {
    margin-bottom: 0;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 45px;
}

.footer-contact {
    margin: 0 auto;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 45px;
}

.footer-legal {
    margin-top: 0;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 45px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-separator {
    display: inline-block;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 1180px) {
    .footer-company,
    .footer-contact {
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .site-footer {
        padding: 20px 0 16px;
    }

    .footer-company,
    .footer-contact {
        font-size: 14px;
        line-height: 1.45;
        white-space: normal;
    }

    .footer-legal {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.35;
    }
}

@media (max-width: 640px) {
    .footer-company,
    .footer-contact,
    .footer-legal {
        font-size: 12px;
        line-height: 1.45;
    }

    .footer-separator {
        margin: 0 6px;
    }
}

@media (max-width: 1400px) and (min-width: 1151px) {
    .wrap {
        width: calc(100% - 32px);
    }

    .header-main__inner {
        gap: 24px;
    }

    .logo-link {
        width: 90px;
        height: 90px;
        flex: 0 0 90px;
    }

    .logo-link img {
        width: 110px;
        height: 110px;
        transform: scale(1.2);
    }

    .brand-text {
        margin-left: 0;
        font-size: 21px;
    }

    .nav-wrap {
        margin-top: -10px;
    }

    .site-nav > ul {
        gap: 16px;
        row-gap: 8px;
        flex-wrap: wrap;
    }

    .site-nav li {
        font-size: 16px;
    }
}

@media (max-width: 1180px) {
    html,
    body {
        min-width: 0;
    }

    .wrap {
        width: min(1400px, calc(100% - 24px));
    }

    .brand-text {
        font-size: 22px;
    }

    .site-nav > ul {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .site-nav li {
        font-size: 17px;
    }

    .ag-card__title {
        font-size: clamp(32px, 5.7vw, 72px);
    }

    .ag-card__subtitle {
        font-size: clamp(16px, 1.6vw, 30px);
    }

    .headline-block h1 {
        font-size: 34px;
    }

    .headline-block h2 {
        font-size: 28px;
    }

    .subpage-banner h1 {
        font-size: 30px;
    }

    .sales-offer-panel__lead {
        font-size: 18px;
    }

    .sales-offer-card {
        grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    }

    .sales-offer-card__media {
        min-height: 250px;
    }

    .sales-offer-card__title {
        font-size: 30px;
    }

    .sales-offer-card__price {
        font-size: 24px;
    }

    .quote-form-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .quote-form-wrap {
        max-width: 100%;
        padding: 24px;
    }

    .quote-label,
    .quote-input,
    .quote-textarea,
    .quote-consent,
    .quote-submit {
        font-size: 18px;
    }

    .about-block {
        grid-template-columns: 1fr 280px;
        gap: 28px;
    }

    .about-page h2 {
        font-size: 22px;
    }

    .about-page p {
        font-size: 16px;
    }

    .contact-page h2 {
        font-size: 22px;
    }

    .contact-page {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "map"
            "divider"
            "social";
        gap: 24px;
        min-height: 0;
    }

    .contact-page__content {
        max-width: 100%;
    }

    .contact-page p {
        font-size: 16px;
    }

    .contact-page__divider {
        margin: 0;
    }

    .contact-page__social-wrap h3 {
        font-size: 22px;
    }

    .contact-page__map {
        margin: 0;
    }

    .contact-page__map-heading {
        font-size: 22px;
    }

    .contact-page__map .google-reviews-page__embed iframe {
        min-height: 340px;
    }

    .premium-service-hero__inner {
        grid-template-columns: 1fr 280px;
        gap: 28px;
        width: min(1400px, calc(100% - 24px));
        padding: 34px 32px;
    }

    .premium-service-hero__text h2 {
        font-size: 28px;
    }

    .premium-service-row {
        gap: 26px;
    }

    .premium-service-row__link {
        gap: 26px;
    }

    .premium-service-row__content h2,
    .premium-service-row__content h3 {
        font-size: 26px;
    }

    .premium-service-row__content p {
        font-size: 17px;
    }

    .premium-service-copy h2 {
        font-size: 28px;
    }

    .premium-service-copy h3 {
        font-size: 22px;
    }

    .premium-service-copy p,
    .premium-service-copy li {
        font-size: 16px;
    }

    .bmw-service-page__section h2 {
        font-size: 34px;
    }

    .bmw-service-checklist li {
        font-size: 24px;
    }

    .dyno-service {
        gap: 36px;
    }

    .dyno-service-intro--title :is(h1, h2, h3) {
        font-size: clamp(28px, 3vw, 34px);
    }

    .dyno-service-intro h2 {
        font-size: 18px;
    }

    .dyno-service-intro--details {
        width: min(1200px, calc(100% - 28px));
    }

    .dyno-service-intro p {
        font-size: 16px;
    }

    .dyno-service-highlight__inner {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 290px);
        gap: 24px;
        width: min(1200px, calc(100% - 28px));
        padding: 42px 18px;
    }

    .dyno-service-highlight__text h1,
    .dyno-service-highlight__text h2,
    .dyno-service-highlight__text h3 {
        font-size: 18px;
    }

    .dyno-service-highlight__text p {
        font-size: 16px;
    }

    .dyno-service-offer__title {
        font-size: 18px;
    }

    .dyno-service-offer__content h2,
    .dyno-service-offer__content h3 {
        font-size: 18px;
    }

    .dyno-service-offer__content p,
    .dyno-service-offer__content li,
    .dyno-service-offer__content b {
        font-size: 16px;
    }

    .dyno-service-offer__cta {
        font-size: clamp(28px, 3vw, 36px);
    }

    .dyno-service-seo__inner {
        display: block;
    }

    .dyno-service-seo__text h2,
    .dyno-service-seo__text h3 {
        font-size: 18px;
        font-weight: 700;
    }

    .dyno-service-seo__text p,
    .dyno-service-seo__text li {
        font-size: 16px;
    }

    .courtesy-cars__intro .courtesy-cars__subtitle {
        font-size: 28px;
    }

    .courtesy-cars__intro p {
        font-size: 16px;
    }

    .courtesy-cars__gallery {
        gap: 24px;
    }

    .courtesy-cars__gallery-heading h3 {
        font-size: clamp(22px, 2.4vw, 30px);
    }

    .google-reviews-page__lead {
        font-size: 17px;
    }

    .google-reviews-page__embed iframe {
        min-height: 400px;
    }

    .google-reviews-page__summary-label {
        font-size: 18px;
    }

    .google-reviews-page__summary-value {
        font-size: 20px;
    }

    .google-review-card__text {
        font-size: 15px;
    }

    .storage-service__heading,
    .storage-service__person-heading {
        font-size: 40px;
    }

    .storage-service__copy,
    .storage-service__person-text {
        font-size: 16px;
    }

    .storage-service__person {
        padding: 46px 0;
    }

    .storage-service__person-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .electro-service__heading,
    .electro-service__expert-heading {
        font-size: 40px;
    }

    .electro-service__copy,
    .electro-service__expert-text {
        font-size: 16px;
    }

    .electro-service__expert {
        padding: 46px 0;
    }

    .electro-service__expert-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .electro-service__seo-heading {
        font-size: 34px;
    }

    .electro-service__copy--seo h2,
    .electro-service__copy--seo h3 {
        font-size: 24px;
    }

    .tire-service__heading,
    .tire-service__scope-heading,
    .tire-service__hero-heading {
        font-size: 40px;
    }

    .tire-service__copy,
    .tire-service__hero-text {
        font-size: 16px;
    }

    .tire-service__hero {
        padding: 46px 0;
    }

    .tire-service__hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .tire-service__seo-heading {
        font-size: 34px;
    }

    .tire-service__copy--seo h2,
    .tire-service__copy--seo h3 {
        font-size: 24px;
    }

    .geometry-service__heading,
    .geometry-service__scope-heading,
    .geometry-service__hero-heading {
        font-size: 40px;
    }

    .geometry-service__copy,
    .geometry-service__hero-text {
        font-size: 16px;
    }

    .geometry-service__hero {
        padding: 46px 0;
    }

    .geometry-service__hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .engine-service__heading,
    .engine-service__scope-heading,
    .engine-service__hero-heading {
        font-size: 40px;
    }

    .engine-service__copy,
    .engine-service__hero-text {
        font-size: 16px;
    }

    .engine-service__hero {
        padding: 46px 0;
    }

    .engine-service__hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .engine-service__seo-heading {
        font-size: 34px;
    }

    .engine-service__copy--seo h2,
    .engine-service__copy--seo h3 {
        font-size: 24px;
    }

    .wash-service__heading,
    .wash-service__scope-heading,
    .wash-service__person-heading {
        font-size: 40px;
    }

    .wash-service__copy,
    .wash-service__person-text {
        font-size: 16px;
    }

    .wash-service__person {
        padding: 46px 0;
    }

    .wash-service__person-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .wash-service__person--szymon .wash-service__person-inner {
        grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    }

    .detailing-service__heading,
    .detailing-service__offer-heading,
    .detailing-service__expert-heading {
        font-size: 40px;
    }

    .detailing-service__copy,
    .detailing-service__expert-text,
    .detailing-service__row-content p {
        font-size: 16px;
    }

    .detailing-service__expert {
        padding: 46px 0;
    }

    .detailing-service__expert-inner {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
        gap: 24px;
    }

    .detailing-service__row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 26px;
    }

    .detailing-service__row-box {
        min-height: 186px;
        font-size: clamp(19px, 2.5vw, 34px);
    }

    .detailing-service__row-content h2,
    .detailing-service__row-content h3 {
        font-size: 28px;
    }

    .detailing-service__copy--seo h2,
    .detailing-service__copy--seo h3 {
        font-size: 24px;
    }

    .detailing-service__realizations-heading {
        font-size: 30px;
    }

    .detailing-realizations {
        --detailing-gap: 14px;
    }

    .detailing-realizations__slide img {
        height: 360px;
    }

    .legacy-offer-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 26px;
    }

    .gallery-lightbox__dialog {
        width: min(96vw, 1280px);
        height: min(90vh, 860px);
        grid-template-columns: 64px 1fr 64px;
    }

    .gallery-lightbox__close,
    .gallery-lightbox__nav {
        width: 46px;
        height: 46px;
    }

    .gallery-lightbox__nav {
        font-size: 34px;
    }
}

@media (max-width: 860px) {
    html,
    body {
        min-width: 0;
    }

    .header-main {
        padding: 12px 0 8px;
    }

    .topbar__inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        row-gap: 0;
        min-height: 44px;
        padding: 4px 0;
    }

    .lang-switch {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        min-width: 0;
    }

    .lang-switch a {
        gap: 0;
    }

    .lang-switch a span {
        display: none;
    }

    .social-icons a {
        width: 31px;
        height: 31px;
    }

    .social-icons a svg {
        width: 16px;
        height: 16px;
    }

    .header-main__inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        min-height: 0;
        gap: 12px;
    }

    .logo-link {
        width: 108px;
        height: 108px;
        flex: 0 0 108px;
    }

    .logo-link img {
        width: 100%;
        height: 100%;
        transform: none;
    }

    .brand-text {
        display: block;
        min-height: 0;
        margin-left: 0;
        width: 100%;
        font-size: 14px;
        white-space: normal;
        line-height: 1.25;
        letter-spacing: 0.15px;
        max-width: 98%;
        text-wrap: balance;
    }

    .nav-wrap {
        margin-top: 16px;
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.26);
        border-radius: 8px;
        background: #081a2a;
        color: #f5f7fa;
        min-height: 46px;
        padding: 0 12px;
        font-family: 'Oswald', sans-serif;
        font-size: 18px;
        letter-spacing: 0.3px;
        cursor: pointer;
    }

    .mobile-nav-toggle__icon {
        position: relative;
        width: 18px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: background-color 0.2s ease;
    }

    .mobile-nav-toggle__icon::before,
    .mobile-nav-toggle__icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
    }

    .mobile-nav-toggle__icon::before {
        top: -6px;
    }

    .mobile-nav-toggle__icon::after {
        bottom: -6px;
    }

    .mobile-nav-toggle.is-open .mobile-nav-toggle__icon {
        background: transparent;
    }

    .mobile-nav-toggle.is-open .mobile-nav-toggle__icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-nav-toggle.is-open .mobile-nav-toggle__icon::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .site-nav {
        width: 100%;
        display: none;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav > ul {
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(5, 17, 27, 0.95);
    }

    .site-nav li {
        font-size: 16px;
        width: 100%;
    }

    .site-nav li > span,
    .site-nav li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 10px;
    }

    .site-nav li > a {
        border-radius: 6px;
    }

    .site-nav li > a:hover,
    .site-nav li > span:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .site-nav li.has-children > span.menu-parent-trigger {
        cursor: pointer;
    }

    .ag-card {
        aspect-ratio: 16 / 9.6;
    }

    .ag-card__title {
        font-size: clamp(28px, 11.5cqi, 70px);
    }

    .ag-card--title-compact .ag-card__title {
        font-size: clamp(24px, 9.8cqi, 58px);
    }

    .ag-card--title-wrap .ag-card__title {
        max-width: 94%;
        font-size: clamp(22px, 8.4cqi, 50px);
        line-height: 0.98;
    }

    .ag-card__subtitle {
        right: 12px;
        bottom: 10px;
        font-size: clamp(12px, 6cqi, 24px);
        max-width: 74%;
        white-space: normal;
        text-wrap: balance;
        line-height: 1.08;
    }

    .site-nav li.has-children {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .dropdown {
        position: static;
        display: none;
        margin: 0 0 8px;
        min-width: 0;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 6px;
        padding: 6px 0;
    }

    .has-children:hover .dropdown {
        display: none;
    }

    .has-children.is-open .dropdown {
        display: block;
    }

    .has-children.is-open > span.menu-parent-trigger::after {
        transform: rotate(225deg) translateY(1px);
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }

    .services-grid.has-odd .ag-card--single {
        width: 100%;
    }

    .headline-block h1 {
        font-size: 28px;
    }

    .headline-block h2 {
        margin-top: 14px;
        font-size: 24px;
    }

    .subpage-banner {
        margin: 18px calc(50% - 50vw) 28px;
        padding: 0 14px;
        min-height: 72px;
    }

    .subpage-banner h1 {
        font-size: 22px;
    }

    .sales-offer-panel {
        gap: 16px;
    }

    .sales-offer-panel__lead {
        font-size: 17px;
        line-height: 1.5;
    }

    .sales-offer-list {
        gap: 16px;
    }

    .sales-offer-card {
        grid-template-columns: 1fr;
    }

    .sales-offer-card__media {
        min-height: 220px;
    }

    .sales-offer-card__content {
        padding: 16px 14px 18px;
        gap: 12px;
    }

    .sales-offer-card__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .sales-offer-card__title {
        font-size: 27px;
    }

    .sales-offer-card__price {
        font-size: 20px;
    }

    .sales-offer-card__excerpt {
        font-size: 15px;
    }

    .sales-offer-card__cta-link {
        font-size: 17px;
        padding: 7px 12px;
    }

    .sales-car-detail {
        padding: 16px 14px 18px;
    }

    .sales-car-detail__head {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sales-car-detail__title {
        font-size: 27px;
    }

    .sales-car-detail__price {
        font-size: 20px;
    }

    .sales-car-detail__figure {
        float: none;
        width: 100%;
        margin: 0 0 14px;
    }

    .quote-form-wrap {
        max-width: 100%;
        padding: 18px 14px 20px;
        border-radius: 12px;
    }

    .quote-form-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 16px 12px;
    }

    .quote-label,
    .quote-input,
    .quote-textarea,
    .quote-consent,
    .quote-submit {
        font-size: 16px;
    }

    .quote-input,
    .quote-textarea {
        padding: 10px 12px;
    }

    .quote-submit {
        width: 100%;
        max-width: 200px;
        height: 56px;
    }

    .about-block {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-block__media {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-page h2 {
        font-size: 22px;
    }

    .about-page p {
        font-size: 15px;
        line-height: 1.55;
    }

    .contact-page {
        min-height: 0;
        gap: 18px;
    }

    .contact-page h2 {
        font-size: 22px;
    }

    .contact-page p {
        font-size: 16px;
        line-height: 1.45;
    }

    .contact-page__space {
        margin-top: 18px !important;
    }

    .contact-page__divider {
        margin: 0;
    }

    .contact-page__social-wrap h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .contact-page__map {
        margin: 0;
    }

    .contact-page__map-heading {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .contact-page__map .google-reviews-page__embed iframe {
        height: 54vh;
        min-height: 280px;
    }

    .contact-social a {
        width: 36px;
        height: 36px;
    }

    .contact-social a svg {
        width: 17px;
        height: 17px;
    }

    .premium-service {
        gap: 20px;
    }

    .premium-service-hero__inner {
        grid-template-columns: 1fr;
        width: min(1400px, calc(100% - 24px));
        padding: 22px 18px;
        gap: 16px;
    }

    .premium-service-hero__photo {
        max-width: 280px;
    }

    .premium-service-hero__text h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .premium-service-hero__text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .premium-service-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .premium-service-row__link {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .premium-service-row__content h2,
    .premium-service-row__content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .premium-service-row__content p {
        font-size: 16px;
        line-height: 1.55;
    }

    .premium-service-copy h2 {
        font-size: 24px;
    }

    .premium-service-copy h3 {
        margin-top: 22px;
        font-size: 20px;
    }

    .premium-service-copy p,
    .premium-service-copy li {
        font-size: 16px;
        line-height: 1.55;
    }

    .detailing-service__row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .detailing-service__row-box {
        min-height: 170px;
        font-size: clamp(18px, 5.4vw, 34px);
        padding: 14px 18px;
    }

    .detailing-service__row-content h2,
    .detailing-service__row-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .detailing-service__row-content p {
        font-size: 16px;
        line-height: 1.55;
    }

    .detailing-service__realizations-heading {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .detailing-realizations {
        --detailing-gap: 10px;
        margin-bottom: 20px;
    }

    .detailing-realizations__slide img {
        height: 300px;
    }

    .bmw-service-page {
        gap: 20px;
    }

    .bmw-service-page__lead {
        font-size: 16px;
        line-height: 1.6;
    }

    .bmw-service-page__section h2 {
        font-size: 28px;
    }

    .bmw-service-checklist {
        gap: 7px;
    }

    .bmw-service-checklist li {
        font-size: 19px;
        padding-left: 0;
        grid-template-columns: 14px minmax(0, 1fr);
    }

    .bmw-service-checklist li::before {
        width: 14px;
        height: 14px;
        margin-top: calc((1.35em - 14px) / 2);
        background-size: 14px 14px;
    }

    .dyno-service {
        gap: 30px;
    }

    .dyno-service-intro {
        width: min(980px, calc(100% - 12px));
    }

    .dyno-service-intro--details {
        width: min(980px, calc(100% - 12px));
    }

    .dyno-service-intro--title :is(h1, h2, h3) {
        font-size: clamp(24px, 6vw, 30px);
        min-height: 72px;
        padding: 14px 14px;
        margin-bottom: 14px;
    }

    .dyno-service-intro h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .dyno-service-intro p {
        font-size: 16px;
        line-height: 1.7;
    }

    .dyno-service-highlight__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        width: min(980px, calc(100% - 12px));
        padding: 20px 14px;
    }

    .dyno-service-highlight__text h1,
    .dyno-service-highlight__text h2,
    .dyno-service-highlight__text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .dyno-service-highlight__text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .dyno-service-highlight__photo {
        justify-self: center;
        width: min(100%, 320px);
    }

    .dyno-service-offer {
        width: min(980px, calc(100% - 12px));
    }

    .dyno-service-offer__title {
        font-size: 18px;
    }

    .dyno-service-offer__content {
        padding: 22px 8px 16px;
    }

    .dyno-service-offer__content h2,
    .dyno-service-offer__content h3 {
        font-size: 18px;
        line-height: 1.55;
    }

    .dyno-service-offer__content p,
    .dyno-service-offer__content li,
    .dyno-service-offer__content b {
        font-size: 16px;
        line-height: 1.7;
    }

    .dyno-service-offer__cta {
        margin: 50px 0 50px;
    }

    .dyno-service-offer__cta {
        font-size: clamp(24px, 7vw, 34px);
        line-height: 1.24;
    }

    .dyno-service-seo {
        width: min(980px, calc(100% - 12px));
    }

    .dyno-service-seo__inner {
        display: block;
    }

    .dyno-service-seo__text h2,
    .dyno-service-seo__text h3 {
        font-size: 18px;
        margin: 22px 0 16px;
        font-weight: 700;
    }

    .dyno-service-seo__text h2:first-child,
    .dyno-service-seo__text h3:first-child {
        margin-top: 0;
    }

    .dyno-service-seo__text p,
    .dyno-service-seo__text li {
        font-size: 16px;
        line-height: 1.7;
    }

    .courtesy-cars {
        gap: 22px;
    }

    .courtesy-cars__intro {
        width: min(980px, calc(100% - 12px));
        padding-bottom: 18px;
    }

    .courtesy-cars__intro .courtesy-cars__subtitle {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .courtesy-cars__intro p {
        font-size: 16px;
        line-height: 1.65;
    }

    .courtesy-cars__gallery {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .courtesy-cars__gallery-heading {
        padding-top: 4px;
    }

    .courtesy-cars__gallery-heading:not(:first-child) {
        margin-top: 10px;
    }

    .courtesy-cars__gallery-heading h3 {
        font-size: 21px;
        line-height: 1.3;
    }

    .google-reviews-page__lead {
        font-size: 16px;
        line-height: 1.6;
    }

    .google-reviews-page__embed iframe {
        height: 66vh;
        min-height: 340px;
    }

    .google-reviews-page__summary {
        padding: 11px 12px;
        gap: 8px;
    }

    .google-reviews-page__summary-label {
        font-size: 17px;
    }

    .google-reviews-page__summary-stars {
        font-size: 16px;
    }

    .google-reviews-page__summary-value {
        font-size: 18px;
    }

    .google-review-card {
        padding: 12px 12px 10px;
        gap: 9px;
    }

    .google-review-card__text {
        font-size: 14px;
        line-height: 1.56;
    }

    .storage-service__intro,
    .storage-service__tires {
        width: min(980px, calc(100% - 12px));
        padding: 14px 0 20px;
    }

    .storage-service__tires {
        padding-top: 28px;
    }

    .storage-service__heading,
    .storage-service__person-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .storage-service__copy,
    .storage-service__person-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .storage-service__person {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .storage-service__person-inner {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .storage-service__photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .electro-service__intro,
    .electro-service__scope,
    .electro-service__seo {
        width: min(980px, calc(100% - 12px));
    }

    .electro-service__intro {
        padding: 14px 0 22px;
    }

    .electro-service__scope {
        padding: 10px 0 22px;
    }

    .electro-service__seo {
        padding-top: 30px;
    }

    .electro-service__heading,
    .electro-service__expert-heading,
    .electro-service__seo-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .electro-service__copy,
    .electro-service__expert-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .electro-service__expert {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .electro-service__expert-inner {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .electro-service__expert-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .electro-service__copy--seo h2,
    .electro-service__copy--seo h3 {
        font-size: 22px;
        margin: 20px 0 10px;
    }

    .tire-service__intro,
    .tire-service__scope,
    .tire-service__seo {
        width: min(980px, calc(100% - 12px));
    }

    .tire-service__intro {
        padding: 14px 0 22px;
    }

    .tire-service__scope {
        padding: 10px 0 22px;
    }

    .tire-service__seo {
        padding-top: 30px;
    }

    .tire-service__heading,
    .tire-service__scope-heading,
    .tire-service__hero-heading,
    .tire-service__seo-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .tire-service__copy,
    .tire-service__hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .tire-service__hero {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .tire-service__hero-inner {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tire-service__hero-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .tire-service__copy--seo h2,
    .tire-service__copy--seo h3 {
        font-size: 22px;
        margin: 20px 0 10px;
    }

    .geometry-service__intro,
    .geometry-service__scope {
        width: min(980px, calc(100% - 12px));
    }

    .geometry-service__intro {
        padding: 14px 0 22px;
    }

    .geometry-service__scope {
        padding: 10px 0 22px;
    }

    .geometry-service__heading,
    .geometry-service__scope-heading,
    .geometry-service__hero-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .geometry-service__copy,
    .geometry-service__hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .geometry-service__hero {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .geometry-service__hero-inner {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .geometry-service__hero-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .engine-service__intro,
    .engine-service__scope,
    .engine-service__seo {
        width: min(980px, calc(100% - 12px));
    }

    .engine-service__intro {
        padding: 14px 0 22px;
    }

    .engine-service__scope {
        padding: 10px 0 22px;
    }

    .engine-service__seo {
        padding-top: 30px;
    }

    .engine-service__heading,
    .engine-service__scope-heading,
    .engine-service__hero-heading,
    .engine-service__seo-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .engine-service__copy,
    .engine-service__hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .engine-service__hero {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .engine-service__hero-inner {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .engine-service__hero-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .engine-service__copy--seo h2,
    .engine-service__copy--seo h3 {
        font-size: 22px;
        margin: 20px 0 10px;
    }

    .wash-service__intro,
    .wash-service__scope {
        width: min(980px, calc(100% - 12px));
    }

    .wash-service__intro {
        padding: 14px 0 22px;
    }

    .wash-service__scope {
        padding: 10px 0 22px;
    }

    .wash-service__heading,
    .wash-service__scope-heading,
    .wash-service__person-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .wash-service__copy,
    .wash-service__person-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .wash-service__person {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .wash-service__person-inner,
    .wash-service__person--szymon .wash-service__person-inner {
        width: min(980px, calc(100% - 12px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wash-service__person-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .detailing-service__intro,
    .detailing-service__offer,
    .detailing-service__seo {
        width: min(980px, calc(100% - 24px));
    }

    .detailing-service__intro {
        padding: 14px 0 22px;
    }

    .detailing-service__offer {
        padding: 0 0 22px;
    }

    .detailing-service__heading,
    .detailing-service__offer-heading,
    .detailing-service__expert-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .detailing-service__offer-heading {
        margin: 24px 0 0;
    }

    .detailing-service__copy,
    .detailing-service__expert-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .detailing-service__expert {
        margin: 28px calc(50% - 50vw);
        padding: 28px 0;
    }

    .detailing-service__expert-inner {
        width: min(980px, calc(100% - 24px));
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detailing-service__expert-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .detailing-service__rows {
        margin-top: 24px;
        gap: 16px;
    }

    .detailing-service__copy--seo h2,
    .detailing-service__copy--seo h3 {
        font-size: 22px;
        margin: 20px 0 10px;
    }

    .detailing-service__row-content h2,
    .detailing-service__row-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .detailing-service__row-box {
        min-height: 142px;
        font-size: clamp(16px, 6.3vw, 25px);
        padding: 12px 14px;
        border-width: 1.5px;
    }

    .detailing-service__realizations-heading {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .detailing-realizations__slide img {
        height: 220px;
    }

    .premium-service-copy ul {
        margin-left: 18px;
    }

    .legacy-offer-layout {
        gap: 20px;
    }

    .legacy-offer-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rich-text h2,
    .rich-text h3 {
        font-size: 22px;
    }

    .page-text {
        font-size: 15px;
    }

    .page-text p,
    .page-text li {
        font-size: 15px;
        line-height: 1.62;
    }

    .maintenance-offer h2 {
        font-size: 25px;
    }

    .sales-offer-card__media {
        min-height: 190px;
    }

    .sales-offer-card__title {
        font-size: 22px;
    }

    .sales-offer-card__price {
        font-size: 18px;
    }

    .sales-offer-card__cta-link {
        font-size: 16px;
    }

    .sales-car-detail__title {
        font-size: 22px;
    }

    .sales-car-detail__price {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-lightbox__dialog {
        width: min(98vw, 820px);
        height: min(84vh, 700px);
        grid-template-columns: 1fr;
        margin: 6vh auto;
    }

    .gallery-lightbox__figure {
        max-width: 100%;
    }

    .gallery-lightbox__image {
        max-height: calc(100% - 34px);
    }

    .gallery-lightbox__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .gallery-lightbox__nav--prev {
        left: 8px;
    }

    .gallery-lightbox__nav--next {
        right: 8px;
    }

    .gallery-lightbox__close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox__caption {
        font-size: 13px;
        min-height: 20px;
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .subpage-banner h1 {
        font-size: 18px;
        line-height: 1.15;
    }
}
