.of-page {
    --of-teal: #18a4b3;
    --of-green: #66b58e;
    --of-yellow: #efb63d;
    --of-orange: #f07834;
    --of-red: #e8553f;
    --accent: #086b78;
    --accent-light: #d6efeb;
    --accent-soft: #e7f5f1;
    background: #f8faf8;
}

.of-page .pi-nav a[aria-current="page"] {
    color: var(--ink);
}

.of-page .pi-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.of-catalog {
    position: relative;
    padding: 156px 0 110px;
    overflow: clip;
    background:
        radial-gradient(circle at 88% 3%, rgba(24,164,179, .055), transparent 24%),
        radial-gradient(circle at 5% 15%, rgba(102,181,142, .045), transparent 21%),
        linear-gradient(180deg, #fff 0, #fcfdfc 540px, #f7faf8 100%);
}

.of-catalog::before {
    content: '';
    position: absolute;
    top: 72px;
    right: -230px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(24,164,179, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(24,164,179, .018), 0 0 0 140px rgba(102,181,142, .012);
    pointer-events: none;
}

.of-intro {
    position: relative;
    z-index: 1;
    display: grid;
    margin-bottom: 52px;
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
    align-items: end;
    gap: clamp(50px, 7vw, 110px);
}

.of-intro::before {
    content: '';
    position: absolute;
    top: -27px;
    left: 0;
    width: 160px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--of-teal), var(--of-green), var(--of-yellow), var(--of-orange), var(--of-red));
}

.of-intro__heading .pi-eyebrow {
    margin-bottom: 24px;
    font-size: 10px;
}

.of-intro h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(54px, 4.7vw, 72px);
    font-weight: 890;
    line-height: 1.03;
    letter-spacing: -.067em;
    text-wrap: balance;
}

.of-intro h1 span,
.of-intro h1 em {
    display: block;
}

.of-intro h1 em {
    color: #cf361f;
    font-style: normal;
}

.of-intro__copy {
    padding: 9px 0 8px 28px;
    border-left: 2px solid var(--of-yellow);
}

.of-intro__copy p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    text-wrap: pretty;
}

.of-intro__copy .of-intro__lead {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.of-intro__actions {
    display: flex;
    margin-top: 25px;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.of-intro__cta {
    display: inline-flex;
    min-height: 56px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.of-intro__cta span {
    font-size: 17px;
    line-height: 1;
}

.of-intro__cta:hover,
.of-intro__cta:focus-visible {
    color: #fff;
    background: #c42836;
    outline: 0;
    transform: translateY(-2px);
}

.of-intro__copy strong {
    display: flex;
    width: max-content;
    margin-top: 0;
    padding: 8px 13px 8px 8px;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.of-intro__copy strong span {
    display: grid;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #c42836;
    font-size: 13px;
    font-weight: 850;
}

.of-tools {
    position: sticky;
    top: 88px;
    z-index: 30;
    scroll-margin-top: 108px;
    padding: 18px;
    border: 1px solid rgba(32, 56, 61, .09);
    border-radius: 26px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 24px 60px rgba(32, 56, 61, .075), inset 0 1px 0 #fff;
    backdrop-filter: blur(20px);
}

.of-search label {
    display: block;
    margin: 0 0 9px 3px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 820;
}

.of-search__field {
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    border: 1px solid rgba(32, 56, 61, .13);
    border-radius: 18px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.of-search__field:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(24,164,179, .1);
}

.of-search__field > svg {
    width: 21px;
    height: 21px;
    margin-left: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: #0b7885;
    stroke-linecap: round;
    stroke-width: 1.6;
}

.of-search__field input {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: 600 15px/1 var(--font);
}

.of-search__field input::placeholder {
    color: #63757a;
    font-weight: 500;
}

.of-search__clear {
    min-height: 40px;
    margin-right: 10px;
    padding: 0 15px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f1f5f3;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
}

.of-search__clear:hover,
.of-search__clear:focus-visible {
    border-color: var(--of-teal);
    outline: 0;
    background: #f4fbf9;
}

.of-filters-wrap {
    position: relative;
}

.of-filters__hint {
    display: none;
}

.of-filters {
    display: flex;
    margin-top: 10px;
    padding: 4px 0 3px;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
}

.of-filters::-webkit-scrollbar {
    display: none;
}

.of-filters button {
    display: inline-flex;
    min-height: 44px;
    padding: 5px 7px 5px 15px;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 720;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    scroll-snap-align: start;
}

.of-filters button b {
    display: grid;
    min-width: 31px;
    height: 31px;
    padding: 0 7px;
    place-items: center;
    border-radius: 999px;
    color: var(--muted);
    background: #f1f5f3;
    font-size: 11px;
}

/* Barwy kategorii pozostają akcentami na jasnej, spokojnej płaszczyźnie. */
.of-filters button[data-offer-filter="print"]:not([aria-pressed="true"]) b {
    color: #20383d;
    background: #fff0c9;
}

.of-filters button[data-offer-filter="outdoor"]:not([aria-pressed="true"]) b {
    color: #cf361f;
    background: #ffe7d7;
}

.of-filters button[data-offer-filter="design"]:not([aria-pressed="true"]) b {
    color: #c42836;
    background: #ffebe5;
}

.of-filters button:hover,
.of-filters button:focus-visible {
    border-color: rgba(24,164,179, .38);
    color: var(--ink);
    outline: 0;
    transform: translateY(-1px);
}

.of-filters button[aria-pressed="true"] {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.of-filters button[aria-pressed="true"] b {
    color: var(--ink);
    background: var(--accent-soft);
}

.of-filters button[data-offer-filter="print"][aria-pressed="true"] {
    border-color: var(--of-yellow);
    background: #20383d;
}

.of-filters button[data-offer-filter="outdoor"][aria-pressed="true"] {
    border-color: #cf361f;
    background: #cf361f;
}

.of-filters button[data-offer-filter="design"][aria-pressed="true"] {
    border-color: #c42836;
    background: #c42836;
}

.of-filters button[data-offer-filter="print"][aria-pressed="true"] b,
.of-filters button[data-offer-filter="outdoor"][aria-pressed="true"] b,
.of-filters button[data-offer-filter="design"][aria-pressed="true"] b {
    background: #fff;
}

.of-results-head {
    display: flex;
    margin: 34px 2px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.of-results-head h2 {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.of-results-head h2 strong {
    color: var(--ink);
    font-size: 15px;
}

.of-results-head > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 760;
}

.of-results-head > a span {
    color: #0b7885;
    font-size: 16px;
}

.of-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.of-card {
    --of-card-tone: var(--of-teal);
    --of-card-ink: #086b77;
    --of-card-wash: #f2faf9;
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 450px;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 34px rgba(32, 56, 61, .045);
    flex-direction: column;
    content-visibility: auto;
    contain-intrinsic-size: auto 450px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.of-card:nth-child(5n + 2) { --of-card-tone: var(--of-green); --of-card-ink: #216c4c; --of-card-wash: #f4faf6; }
.of-card:nth-child(5n + 3) { --of-card-tone: var(--of-yellow); --of-card-ink: #20383d; --of-card-wash: #fffaf0; }
.of-card:nth-child(5n + 4) { --of-card-tone: var(--of-orange); --of-card-ink: #cf361f; --of-card-wash: #fff7f1; }
.of-card:nth-child(5n) { --of-card-tone: var(--of-red); --of-card-ink: #c42836; --of-card-wash: #fff6f3; }

.of-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
    height: 3px;
    background: var(--of-card-tone);
    pointer-events: none;
}

.of-card:hover {
    box-shadow: 0 24px 52px rgba(32, 56, 61, .09);
    transform: translateY(-5px);
}

.of-card--featured {
    box-shadow: 0 16px 38px rgba(32, 56, 61, .065);
}

.of-card[hidden] {
    display: none !important;
}

.of-card__media {
    position: relative;
    display: grid;
    height: auto;
    aspect-ratio: 4 / 5;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border-bottom: 0;
    background: linear-gradient(180deg, var(--of-card-wash), #fff 38%);
}

.of-card__media img {
    --media-inset: clamp(12px, 1.2vw, 18px);
    position: absolute;
    inset: var(--media-inset);
    z-index: 2;
    width: calc(100% - var(--media-inset) - var(--media-inset)) !important;
    height: calc(100% - var(--media-inset) - var(--media-inset)) !important;
    max-width: none;
    max-height: none;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center;
    transition: transform .35s ease;
}

.of-card:hover .of-card__media img {
    transform: scale(1.035);
}

.of-card__fallback {
    position: absolute;
    color: rgba(32, 56, 61, .18);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.of-card.is-image-missing .of-card__media img {
    display: none;
}

.of-card__body {
    display: flex;
    min-height: 215px;
    padding: 21px 18px 18px;
    flex: 1;
    flex-direction: column;
}

.of-card__category {
    margin: 0 0 10px;
    color: var(--of-card-ink);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .095em;
    text-transform: uppercase;
}

.of-card__title {
    margin: 0 0 11px;
    font-size: 18px;
    font-weight: 820;
    line-height: 1.18;
    letter-spacing: -.035em;
    text-wrap: pretty;
}

.of-card__description {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.58;
    text-wrap: pretty;
}

.of-card__body > a {
    display: flex;
    min-height: 42px;
    margin-top: auto;
    padding-top: 13px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.of-card__body > a span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--of-card-ink);
    font-size: 13px;
    transition: transform .2s ease;
}

.of-card__body > a:hover span,
.of-card__body > a:focus-visible span {
    transform: rotate(8deg) translate(1px, -1px);
}

.of-card__body > a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
}

.of-empty {
    padding: 75px 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    text-align: center;
    background: #fff;
}

.of-empty[hidden] {
    display: none;
}

.of-empty strong {
    display: block;
    font-size: 28px;
    letter-spacing: -.04em;
}

.of-empty p {
    margin: 8px 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.of-empty button {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    cursor: pointer;
    font-weight: 750;
}

@media (max-width: 1380px) {
    .of-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .of-catalog {
        padding-top: 132px;
    }

    .of-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .of-intro__copy {
        max-width: 720px;
    }

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

@media (max-width: 840px) {
    .of-tools {
        position: relative;
        top: auto;
    }

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

    .of-card {
        min-height: 430px;
    }

    .of-card__media {
        height: auto;
        aspect-ratio: 4 / 5;
        flex-basis: auto;
    }
}

@media (max-width: 620px) {
    .of-catalog {
        padding: 108px 0 76px;
    }

    .of-catalog::before {
        display: none;
    }

    .of-intro {
        margin-bottom: 32px;
        gap: 24px;
    }

    .of-intro__heading .pi-eyebrow {
        margin-bottom: 16px;
        font-size: 8px;
    }

    .of-intro h1 {
        font-size: clamp(38px, 10.2vw, 46px);
        line-height: 1.04;
        letter-spacing: -.06em;
    }

    .of-intro__copy {
        padding: 20px 0 0;
        border-top: 2px solid var(--of-yellow);
        border-left: 0;
    }

    .of-intro__copy p {
        font-size: 16px;
        line-height: 1.68;
    }

    .of-intro__copy .of-intro__lead {
        margin-bottom: 9px;
        font-size: 18px;
        line-height: 1.4;
    }

    .of-intro__actions {
        margin-top: 20px;
        align-items: stretch;
        flex-direction: column;
    }

    .of-intro__cta {
        width: 100%;
        justify-content: space-between;
    }

    .of-intro__copy strong {
        font-size: 12px;
    }

    .of-tools {
        margin: 0 -4px;
        padding: 12px;
        border-radius: 20px;
    }

    .of-search label {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .of-search__field {
        min-height: 58px;
        border-radius: 15px;
    }

    .of-search__field > svg {
        margin-left: 15px;
    }

    .of-search__field input {
        min-width: 0;
        height: 56px;
        padding: 0 12px;
        font-size: 14px;
    }

    .of-search__clear {
        min-height: 36px;
        margin-right: 7px;
        padding: 0 10px;
        font-size: 11px;
    }

    .of-filters {
        margin-right: -12px;
        padding-right: 12px;
    }

    .of-filters-wrap.is-scrollable .of-filters__hint {
        display: flex;
        margin: 13px 2px 2px;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.4;
    }

    .of-filters__hint span {
        display: grid;
        width: 36px;
        height: 28px;
        flex: 0 0 auto;
        place-items: center;
        border: 1px solid rgba(24,164,179, .24);
        border-radius: 999px;
        color: #0b7885;
        background: #f4fbf9;
    }

    .of-filters__hint svg {
        display: block;
        width: 20px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

    .of-filters-wrap.is-scrollable:not(.is-at-end)::after {
        content: '';
        position: absolute;
        z-index: 2;
        right: -12px;
        bottom: 3px;
        width: 44px;
        height: 44px;
        background: linear-gradient(90deg, rgba(255,253,251,0), rgba(255,253,251,.98) 72%);
        pointer-events: none;
    }

    .of-filters button {
        min-height: 43px;
        font-size: 12px;
    }

    .of-results-head {
        margin: 27px 1px 15px;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .of-results-head h2,
    .of-results-head > a {
        font-size: 13px;
    }

    .of-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .of-card {
        min-height: 0;
        border-radius: 20px;
    }

    .of-card__media {
        height: auto;
        aspect-ratio: 4 / 5;
        flex-basis: auto;
    }

    .of-card__body {
        min-height: 220px;
        padding: 21px 18px 18px;
    }

    .of-card__category {
        font-size: 11px;
    }

    .of-card__title {
        font-size: 22px;
    }

    .of-card__description {
        font-size: 14px;
        line-height: 1.62;
    }

    .of-card__body > a {
        font-size: 12px;
    }
}

@media (max-width: 760px) {
    .of-page .pi-nav > a {
        grid-template-columns: minmax(0, 1fr) 34px;
    }

    .of-page .pi-nav > a::before {
        display: none;
    }

    .of-page .pi-nav a[aria-current="page"] {
        color: #fff;
    }
}

@media (prefers-reduced-motion: reduce) {
    .of-intro__cta,
    .of-card,
    .of-card__media img,
    .of-filters button {
        transition: none;
    }

}

/* Natural, contextual links to local branches. */
.of-page .pl-footer__locations {
    position: relative;
    margin-top: 24px;
    padding: clamp(24px, 3vw, 36px);
    overflow: hidden;
    border: 1px solid var(--footer-line);
    border-radius: 24px;
    background: #fff;
}

.of-page .pl-footer__locations-intro {
    display: grid;
    margin-bottom: 24px;
    align-items: start;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: clamp(30px, 5vw, 72px);
}

.of-page .pl-footer__locations-kicker {
    display: flex;
    margin: 0 0 15px;
    align-items: center;
    gap: 10px;
    color: #0b7885;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.of-page .pl-footer__locations-kicker span {
    width: 25px;
    height: 1px;
    background: currentColor;
    opacity: .55;
}

.of-page .pl-footer__locations h2 {
    max-width: 760px;
    margin: 0;
    color: var(--footer-ink);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.of-page .pl-footer__locations-description {
    max-width: 820px;
    margin: 17px 0 0;
    color: #53676a;
    font-size: 13px;
    line-height: 1.7;
    text-wrap: pretty;
}

.of-page .pl-footer__locations-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.of-page .pl-footer__locations-copy > p {
    display: flex;
    max-width: 420px;
    margin: 0 0 18px;
    flex-direction: column;
    gap: 6px;
}

.of-page .pl-footer__locations-copy strong {
    color: var(--footer-ink);
    font-size: 14px;
    line-height: 1.45;
}

.of-page .pl-footer__locations-copy p span {
    color: #53676a;
    font-size: 13px;
    line-height: 1.6;
}

.of-page .pl-footer__locations-copy > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 11px;
    color: var(--footer-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.of-page .pl-footer__locations-copy > a span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid var(--footer-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.of-page .pl-footer__locations-copy > a:hover,
.of-page .pl-footer__locations-copy > a:focus-visible {
    color: var(--accent);
    outline: 0;
}

.of-page .pl-footer__locations-copy > a:hover span,
.of-page .pl-footer__locations-copy > a:focus-visible span {
    color: #fff;
    background: var(--accent);
    transform: translateY(2px);
}

.of-page .pl-footer__cities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.of-page .pl-footer__cities a {
    display: grid;
    min-height: 58px;
    padding: 0 14px 0 17px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    border: 1px solid var(--footer-line);
    border-radius: 13px;
    color: var(--footer-ink);
    background: #fbfdfc;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.of-page .pl-footer__cities a strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.of-page .pl-footer__cities a b {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid var(--footer-line);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.of-page .pl-footer__cities a:hover,
.of-page .pl-footer__cities a:focus-visible {
    border-color: #708779;
    outline: 0;
    background: var(--ui-paper);
    transform: translateY(-2px);
}

.of-page .pl-footer__cities a:hover b,
.of-page .pl-footer__cities a:focus-visible b {
    color: #fff;
    background: var(--footer-ink);
    transform: rotate(8deg);
}

@media (max-width: 980px) {
    .of-page .pl-footer__locations-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .of-page .pl-footer__cities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .of-page .pl-footer__locations {
        margin-top: 16px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .of-page .pl-footer__locations h2 {
        font-size: 28px;
    }

    .of-page .pl-footer__cities {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .of-page .pl-footer__cities a {
        min-height: 54px;
    }
}

/* Jedna stopka dla stron oferty: ten sam układ i spokojna paleta co na /ulotki/. */
.of-page .pl-footer {
    --footer-ink: #20383d;
    --footer-muted: #607276;
    --footer-line: rgba(32, 56, 61, .11);
    --footer-gradient: linear-gradient(90deg, var(--of-teal), var(--of-green), var(--of-yellow), var(--of-orange), var(--of-red));
    position: relative;
    padding: clamp(54px, 6vw, 84px) 0 28px;
    overflow: hidden;
    border-top: 0;
    color: var(--footer-ink);
    background:
        radial-gradient(circle at 4% 4%, rgba(24, 164, 179, .09), transparent 29%),
        radial-gradient(circle at 96% 82%, rgba(240, 120, 52, .045), transparent 27%),
        #fbfcfa;
}

.of-page .pl-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--footer-gradient);
    content: "";
}

.of-page .pl-footer .pi-shell { width: min(1400px, calc(100% - 72px)); }

.of-page .pl-footer__grid {
    position: relative;
    display: grid;
    padding: 10px;
    grid-template-columns: 1.18fr .92fr 1.05fr 1.05fr;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 30px;
    background: linear-gradient(rgba(255, 255, 255, .72), rgba(255, 255, 255, .72)) padding-box, var(--footer-gradient) border-box;
    box-shadow: 0 28px 70px rgba(32, 56, 61, .09);
    backdrop-filter: blur(10px);
}

.of-page .pl-footer__brand-card,
.of-page .pl-footer__module {
    min-height: 390px;
    margin: 0;
    padding: 28px;
    border: 1px solid var(--footer-line);
    border-radius: 21px;
    background: #fff;
    box-shadow: none;
}

.of-page .pl-footer__brand-card {
    position: relative;
    overflow: hidden;
}

.of-page .pl-footer__brand-card::before {
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 2px;
    background: var(--footer-gradient);
    content: "";
}

.of-page .pl-footer__brand-card::after {
    display: block;
    right: -110px;
    bottom: -130px;
    border-color: rgba(42, 167, 181, .13);
    box-shadow: 0 0 0 38px rgba(24, 164, 179, .018);
}

.of-page .pl-footer__brand-card > p strong,
.of-page .pl-footer__module h3 { color: var(--footer-ink); }
.of-page .pl-footer__brand-card > p span { color: var(--footer-muted); }
.of-page .pl-footer__phone small { color: #cf361f; font-weight: 800; }
.of-page .pl-footer__phone svg { color: #008fa8; background: #e7f6f7; }
.of-page .pl-footer__address { border-color: var(--footer-line); }

.of-page .pl-footer__module {
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--footer-line);
}

.of-page .pl-footer__module:nth-child(2) { background: #f3fbfc; }
.of-page .pl-footer__module:nth-child(3) { background: #fffaf0; }
.of-page .pl-footer__module:nth-child(4) { background: #fff6f4; }

.of-page .pl-footer__module::before {
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: var(--footer-gradient);
    content: "";
}

.of-page .pl-footer__module:nth-child(3)::before { background: var(--of-yellow); }
.of-page .pl-footer__module:nth-child(4)::before { background: linear-gradient(90deg, var(--of-orange), var(--of-red)); }
.of-page .pl-footer__module:nth-child(2) h3 { color: #086b77; }
.of-page .pl-footer__module:nth-child(3) h3 { color: var(--footer-ink); }
.of-page .pl-footer__module:nth-child(4) h3 { color: #c42836; }

.of-page .pl-footer__module li a {
    padding: 0 8px;
    border-radius: 10px;
    color: var(--footer-muted);
    transition: color .2s ease, padding .2s ease, background .2s ease;
}

.of-page .pl-footer__module li a:hover,
.of-page .pl-footer__module li a:focus-visible {
    padding-left: 11px;
    color: var(--footer-ink);
    text-decoration: none;
    background: rgba(255, 255, 255, .72);
}

.of-page .pl-footer__module-cta {
    border-color: var(--footer-line);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 22px rgba(32, 56, 61, .05);
}

.of-page .pl-footer__module-cta span,
.of-page .pl-footer__bottom > a span {
    color: #fff;
    background: #086b77;
}

.of-page .pl-footer__module:nth-child(4) .pl-footer__module-cta span {
    background: #c42836;
}

.of-page .pl-footer__module:nth-child(3) .pl-footer__module-cta span {
    background: #cf361f;
}

.of-page .pl-footer__module-cta:hover,
.of-page .pl-footer__module-cta:focus-visible {
    border-color: var(--of-orange);
    background: #fff;
}

.of-page .pl-footer__locations {
    margin-top: 18px;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        radial-gradient(circle at 95% 3%, rgba(24, 164, 179, .085), transparent 37%) padding-box,
        linear-gradient(#fff, #fff) padding-box,
        var(--footer-gradient) border-box;
    box-shadow: 0 20px 54px rgba(32, 56, 61, .075);
}

.of-page .pl-footer__locations::before {
    position: absolute;
    top: 0;
    right: 36px;
    left: 36px;
    height: 2px;
    background: var(--footer-gradient);
    content: "";
}

.of-page .pl-footer__locations-intro {
    margin-bottom: 26px;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
    align-items: end;
    gap: clamp(38px, 6vw, 86px);
}

.of-page .pl-footer__locations-kicker {
    color: #07889c;
    font-weight: 820;
    letter-spacing: .14em;
}

.of-page .pl-footer__locations-kicker span {
    width: 28px;
    height: 2px;
    background: var(--footer-gradient);
    opacity: 1;
}

.of-page .pl-footer__locations h2 {
    font-size: clamp(31px, 3vw, 44px);
    font-weight: 870;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.of-page .pl-footer__locations-description { color: var(--footer-muted); }
.of-page .pl-footer__locations-copy p span { color: var(--footer-muted); }
.of-page .pl-footer__locations-copy > a {
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .06em;
}

.of-page .pl-footer__locations-copy > a span {
    width: 30px;
    height: 30px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--of-teal), var(--of-green));
}

.of-page .pl-footer__cities { gap: 9px; }
.of-page .pl-footer__cities a {
    --city: var(--of-teal);
    --city-next: var(--of-green);
    --city-rgb: 24, 164, 179;
    position: relative;
    min-height: 60px;
    padding: 0 12px 0 16px;
    overflow: hidden;
    border: 1px solid rgba(var(--city-rgb), .21);
    border-radius: 15px;
    background: radial-gradient(circle at 100% 50%, rgba(var(--city-rgb), .07), transparent 62%), #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.of-page .pl-footer__cities a:nth-child(even) {
    --city: var(--of-green);
    --city-next: var(--of-teal);
    --city-rgb: 102, 181, 142;
}

.of-page .pl-footer__cities a:nth-child(3),
.of-page .pl-footer__cities a:nth-child(8) {
    --city: var(--of-yellow);
    --city-next: var(--of-yellow);
    --city-rgb: 239, 182, 61;
}

.of-page .pl-footer__cities a:nth-child(4),
.of-page .pl-footer__cities a:nth-child(5) {
    --city: #cf361f;
    --city-next: var(--of-orange);
    --city-rgb: 207, 54, 31;
}

.of-page .pl-footer__cities a:nth-child(6) {
    --city: #c42836;
    --city-next: var(--of-red);
    --city-rgb: 173, 55, 41;
}

.of-page .pl-footer__cities a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--city), var(--city-next));
    content: "";
}

.of-page .pl-footer__cities a strong { font-size: 13px; font-weight: 720; }
.of-page .pl-footer__cities a b {
    width: 29px;
    height: 29px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--city), var(--city-next));
    font-size: 10px;
}
.of-page .pl-footer__cities a:nth-child(3) b,
.of-page .pl-footer__cities a:nth-child(8) b { color: #20383d; }
.of-page .pl-footer__cities a:nth-child(1) b,
.of-page .pl-footer__cities a:nth-child(2) b,
.of-page .pl-footer__cities a:nth-child(7) b { color: #20383d; }
.of-page .pl-footer__cities a:nth-child(4) b,
.of-page .pl-footer__cities a:nth-child(5) b { color: #fff; background: #cf361f; }
.of-page .pl-footer__cities a:nth-child(6) b { color: #fff; background: #c42836; }

.of-page .pl-footer__cities a:hover,
.of-page .pl-footer__cities a:focus-visible {
    border-color: rgba(var(--city-rgb), .42);
    background: #fff;
    box-shadow: 0 11px 25px rgba(var(--city-rgb), .11);
}

.of-page .pl-footer__cities a:hover b,
.of-page .pl-footer__cities a:focus-visible b { background: linear-gradient(135deg, var(--city), var(--city-next)); }
.of-page .pl-footer__bottom { padding-top: 23px; border: 0; }
.of-page .pl-footer__bottom p { color: var(--footer-muted); }
.of-page .pl-footer__bottom > a { color: var(--footer-muted); }
.of-page .pl-footer__bottom > a span { border-color: var(--footer-line); }

@media (max-width: 1100px) {
    .of-page .pl-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .of-page .pl-footer__brand-card,
    .of-page .pl-footer__module { min-height: 360px; }
}

@media (max-width: 980px) {
    .of-page .pl-footer__locations-intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 22px;
    }
}

@media (max-width: 620px) {
    .of-page .pl-footer { padding: 42px 0 20px; }
    .of-page .pl-footer .pi-shell { width: calc(100% - 20px); }
    .of-page .pl-footer__grid {
        padding: 7px;
        grid-template-columns: 1fr;
        gap: 7px;
        border-radius: 23px;
    }
    .of-page .pl-footer__brand-card,
    .of-page .pl-footer__module {
        min-height: 0;
        margin: 0;
        padding: 24px 20px;
        border-radius: 17px;
    }
    .of-page .pl-footer__module { border: 1px solid var(--footer-line); }
    .of-page .pl-footer__module ul { grid-template-columns: 1fr; }
    .of-page .pl-footer__locations {
        margin-top: 12px;
        padding: 26px 18px 18px;
        border-radius: 22px;
    }
    .of-page .pl-footer__locations::before { right: 22px; left: 22px; }
    .of-page .pl-footer__locations h2 { font-size: 30px; }
    .of-page .pl-footer__locations-description,
    .of-page .pl-footer__locations-copy p span { font-size: 12px; }
    .of-page .pl-footer__cities { grid-template-columns: 1fr; gap: 7px; }
    .of-page .pl-footer__cities a { min-height: 55px; }
    .of-page .pl-footer__bottom { gap: 13px; }
}

/* One continuous canvas behind the catalogue, with no section or footer seam. */
.of-page main {
    background: linear-gradient(180deg, #f5faf8 0%, #e8f2ee 48%, #fbfcfa 100%);
}

.of-page main > .of-catalog {
    background: transparent;
}

.of-page .pl-footer {
    background: #fbfcfa;
}

.of-page .pl-footer::before {
    content: none;
}
