/* Zlotnik Krakow service landing page */

.bd-zlotnik-page {
    --bd-zlotnik-max: 1120px;
    --bd-zlotnik-border: rgba(31, 31, 31, 0.14);
    background: var(--bd-surface);
    color: var(--bd-primary);
    font-family: var(--bd-sans);
}

.bd-zlotnik-page * {
    box-sizing: border-box;
}

.bd-zlotnik-page a:not(.bd-btn):not(.bd-button) {
    color: var(--bd-primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

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

.bd-zlotnik-section,
.bd-zlotnik-hero {
    width: min(var(--bd-zlotnik-max), calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(36px, 6vw, 78px) 0;
}

.bd-zlotnik-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.bd-zlotnik-hero__copy {
    display: grid;
    gap: 18px;
}

.bd-zlotnik-kicker {
    margin: 0;
    color: var(--bd-gold-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bd-zlotnik-title {
    max-width: 11ch;
    margin: 0;
    font-family: var(--bd-serif);
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: 0;
}

.bd-zlotnik-lead {
    margin: 0;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.bd-zlotnik-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.bd-zlotnik-trust,
.bd-zlotnik-grid,
.bd-zlotnik-cases,
.bd-zlotnik-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 0;
}

.bd-zlotnik-card,
.bd-zlotnik-fact,
.bd-zlotnik-case,
.bd-zlotnik-note {
    border: 1px solid var(--bd-zlotnik-border);
    border-radius: var(--bd-radius-lg);
    background: rgba(255, 255, 255, 0.52);
    padding: clamp(18px, 2.4vw, 26px);
}

.bd-zlotnik-card h3,
.bd-zlotnik-case h3,
.bd-zlotnik-section h2,
.bd-zlotnik-section h3 {
    color: var(--bd-primary);
    letter-spacing: 0;
}

.bd-zlotnik-section h2 {
    margin: 0 0 16px;
    font-family: var(--bd-serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.12;
}

.bd-zlotnik-section h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.24;
}

.bd-zlotnik-section p,
.bd-zlotnik-section li {
    font-size: 16px;
    line-height: 1.7;
}

.bd-zlotnik-section p {
    margin: 0 0 14px;
}

.bd-zlotnik-price-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border: 1px solid var(--bd-zlotnik-border);
    border-radius: var(--bd-radius-lg);
    background: #fff;
}

.bd-zlotnik-price-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.bd-zlotnik-price-table caption {
    padding: 14px 16px;
    color: var(--bd-muted);
    font-size: 14px;
    text-align: left;
}

.bd-zlotnik-price-table th,
.bd-zlotnik-price-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bd-zlotnik-border);
    text-align: left;
    vertical-align: top;
}

.bd-zlotnik-price-table th {
    background: rgba(31, 31, 31, 0.05);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bd-zlotnik-price-table tr:last-child td {
    border-bottom: 0;
}

.bd-zlotnik-steps {
    counter-reset: bd-step;
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.bd-zlotnik-steps li {
    counter-increment: bd-step;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.bd-zlotnik-steps li::before {
    content: counter(bd-step);
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: var(--bd-radius);
    background: var(--bd-primary);
    color: #fff;
    font-weight: 700;
}

.bd-zlotnik-steps li > strong,
.bd-zlotnik-steps li > p {
    grid-column: 2;
}

.bd-zlotnik-faq details {
    border-top: 1px solid var(--bd-zlotnik-border);
    padding: 18px 0;
}

.bd-zlotnik-faq details:last-child {
    border-bottom: 1px solid var(--bd-zlotnik-border);
}

.bd-zlotnik-faq summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.45;
}

.bd-zlotnik-faq summary + p {
    margin-top: 12px;
}

.bd-zlotnik-map {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.bd-zlotnik-mobile-cta {
    display: none;
}

.bd-article-body a.bd-btn--primary,
.bd-zlotnik-page a.bd-btn--primary {
    border-color: var(--bd-primary);
    background: var(--bd-primary);
    color: var(--bd-on-primary);
}

.bd-article-body a.bd-btn--primary:hover,
.bd-article-body a.bd-btn--primary:focus-visible,
.bd-zlotnik-page a.bd-btn--primary:hover,
.bd-zlotnik-page a.bd-btn--primary:focus-visible {
    border-color: var(--bd-primary-deep);
    background: var(--bd-primary-deep);
    color: var(--bd-on-primary);
}

@media (max-width: 780px) {
    .bd-zlotnik-hero,
    .bd-zlotnik-trust,
    .bd-zlotnik-grid,
    .bd-zlotnik-cases,
    .bd-zlotnik-facts {
        grid-template-columns: 1fr;
    }

    .bd-zlotnik-section,
    .bd-zlotnik-hero {
        width: min(100% - 24px, var(--bd-zlotnik-max));
        padding: 34px 0;
    }

    .bd-zlotnik-title {
        max-width: 100%;
        font-size: clamp(38px, 12vw, 58px);
    }

    .bd-zlotnik-mobile-cta {
        position: sticky;
        bottom: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        margin: 32px 0 0;
        background: var(--bd-zlotnik-border);
        border-top: 1px solid var(--bd-zlotnik-border);
    }

    .bd-zlotnik-mobile-cta a {
        display: grid;
        min-height: 48px;
        place-items: center;
        background: #fff;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }
}
