/* Oferta – podstrony (wspólny plik dla /oferta/*) */

.subpage-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.0) 55%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.72));
}

.subpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
    opacity: 0.45;
}

.subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.55));
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
}

.subpage-hero .section-heading {
    color: #ffffff;
}

.subpage-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
}

.subpage-breadcrumbs a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.subpage-breadcrumbs a:hover {
    color: var(--gold);
}

.subpage-lead {
    max-width: 820px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin: 16px 0 0;
}

.subpage-lead--small {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 0;
}

.subpage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.subpage-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    max-width: 780px;
}

.subpage-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    backdrop-filter: blur(6px);
}

.subpage-badge-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.subpage-badge-value {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.subpage-section--alt {
    background-color: var(--bg-cream);
}

.subpage-split {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.subpage-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.subpage-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.subpage-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--gold);
}

.subpage-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.subpage-dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.subpage-dl div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
}

.subpage-dl div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.subpage-dl dt {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.subpage-dl dd {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

.subpage-card-actions {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.subpage-section .btn-secondary-link {
    color: var(--text-main);
}

.subpage-section .btn-secondary-link span {
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.subpage-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.subpage-step {
    position: relative;
}

.subpage-cta {
    margin-top: 28px;
    border-radius: 18px;
    padding: 22px 22px;
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(255,255,255,0.0));
    border: 1px solid rgba(212,175,55,0.22);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.subpage-cta-text h3 {
    margin: 0 0 8px;
}

.subpage-cta-text p {
    margin: 0;
    color: var(--text-muted);
}

.subpage-gallery-mini {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.subpage-gallery-mini img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.10);
}

@media (max-width: 980px) {
    .subpage-hero-badges {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .subpage-split {
        grid-template-columns: 1fr;
    }

    .subpage-steps {
        grid-template-columns: 1fr;
    }

    .subpage-gallery-mini {
        grid-template-columns: 1fr;
    }

    .subpage-gallery-mini img {
        height: 260px;
    }
}

@media (max-width: 520px) {
    .subpage-hero {
        padding: 120px 0 64px;
    }
}

/* Editorial refinement shared by all offer pages */

.subpage-hero {
    padding: 104px 0 96px;
    background: var(--bg-dark-soft);
}

.subpage-hero::before {
    filter: saturate(0.72) contrast(1.08);
    opacity: 0.56;
}

.subpage-hero::after {
    background: linear-gradient(90deg, rgba(17, 16, 15, 0.96) 0%, rgba(17, 16, 15, 0.74) 54%, rgba(17, 16, 15, 0.26) 100%);
}

.subpage-hero .section-heading {
    max-width: 920px;
}

.subpage-breadcrumbs {
    margin-bottom: 28px;
    color: rgba(235, 236, 236, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.subpage-lead {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.8;
}

.subpage-hero-actions {
    gap: 24px;
    margin-top: 32px;
}

.subpage-hero-badges {
    max-width: 860px;
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid rgba(235, 236, 236, 0.2);
    border-bottom: 1px solid rgba(235, 236, 236, 0.2);
}

.subpage-badge {
    min-height: 96px;
    padding: 20px 22px;
    border: 0;
    border-right: 1px solid rgba(235, 236, 236, 0.2);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.subpage-badge:last-child {
    border-right: 0;
}

.subpage-badge-label {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.subpage-badge-value {
    margin-top: 10px;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
}

.subpage-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
    gap: clamp(54px, 8vw, 110px);
}

.subpage-list {
    gap: 14px;
    padding-left: 22px;
    line-height: 1.7;
}

.subpage-card {
    padding: 10px 0 10px 28px;
    border: 0;
    border-left: 1px solid var(--gold-dark);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.subpage-card h3 {
    margin-bottom: 22px;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 0;
}

.subpage-dl {
    gap: 0;
}

.subpage-dl div {
    padding: 13px 0;
    border-bottom-color: rgba(43, 42, 41, 0.15);
}

.subpage-dl dt {
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.subpage-steps {
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid rgba(43, 42, 41, 0.18);
    border-bottom: 1px solid rgba(43, 42, 41, 0.18);
}

.subpage-step {
    min-height: 230px;
    padding: 30px 28px;
    border-right: 1px solid rgba(43, 42, 41, 0.18);
}

.subpage-step::before {
    display: none;
    content: none;
}

.subpage-step:last-child {
    border-right: 0;
}

.subpage-cta {
    margin-top: 42px;
    padding: 28px 0;
    border: 0;
    border-top: 1px solid rgba(var(--gold-rgb), 0.45);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.45);
    border-radius: 0;
    background: transparent;
}

.subpage-gallery-mini {
    gap: 10px;
    margin-top: 32px;
}

.subpage-gallery-mini img {
    height: 280px;
    border-radius: 0;
    box-shadow: none;
    filter: saturate(0.9);
}

@media (max-width: 980px) {
    .subpage-hero-badges {
        grid-template-columns: 1fr;
    }

    .subpage-badge {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(235, 236, 236, 0.18);
    }

    .subpage-badge:last-child {
        border-bottom: 0;
    }

    .subpage-split {
        grid-template-columns: 1fr;
    }

    .subpage-steps {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .subpage-step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(43, 42, 41, 0.18);
    }
}

@media (max-width: 520px) {
    .subpage-hero {
        padding: 76px 0 70px;
    }

    .subpage-gallery-mini img {
        height: 240px;
    }
}

@media (min-width: 981px) {
    .subpage-hero {
        padding-top: 82px;
        padding-bottom: 76px;
    }

    .subpage-hero-badges {
        margin-top: 38px;
    }

    .subpage-split {
        gap: clamp(48px, 6vw, 82px);
    }

    .subpage-steps {
        margin-top: 28px;
    }

    .subpage-step {
        min-height: 200px;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .subpage-cta {
        margin-top: 32px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .subpage-gallery-mini {
        margin-top: 24px;
    }

    .subpage-gallery-mini img {
        height: 240px;
    }
}
