/* =========================================================
   SERVICE PAGE — Podstrona specjalizacji
   ========================================================= */

/* ─── Page Hero (mini) ─── */
.page-hero {
    background: var(--graphite-dark);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(195,160,75,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb__item {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35);
}

.breadcrumb__item a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
    color: var(--gold);
}

.breadcrumb__sep {
    color: rgba(195,160,75,0.4);
    font-size: 0.65rem;
}

.breadcrumb__item--current {
    color: var(--gold);
}

/* Page title */
.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero__intro {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── Service Content ─── */
.service-content {
    padding: 80px 0;
    background: var(--white);
}

.service-content__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

/* Main content area */
.service-main {}

.service-main__lead {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--graphite-dark);
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gray-light);
}

.service-main__heading {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Services list */
.service-list {
    list-style: none;
    margin-bottom: 40px;
}

.service-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(185,185,185,0.2);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--graphite);
    line-height: 1.6;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.service-list__item:first-child {
    border-top: 1px solid rgba(185,185,185,0.2);
}

.service-list__item:hover {
    color: var(--graphite-dark);
    padding-left: 8px;
}

.service-list__bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(195,160,75,0.3);
    flex-shrink: 0;
    margin-top: 1px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.service-list__bullet svg {
    color: var(--gold);
    width: 10px;
    height: 10px;
}

.service-list__item:hover .service-list__bullet {
    border-color: var(--gold);
    background: rgba(195,160,75,0.06);
}

/* ─── Sidebar ─── */
.service-sidebar {
    position: sticky;
    top: 100px;
}

/* Quick contact box */
.sidebar-contact {
    background: var(--graphite-dark);
    padding: 32px 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.sidebar-contact__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-contact__sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    line-height: 1.6;
}

.sidebar-contact__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.sidebar-contact__phone:hover {
    color: var(--gold-light);
}

.sidebar-contact__btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.sidebar-contact__btn:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(195,160,75,0.3);
}

/* Other services nav */
.sidebar-services {
    background: var(--bg);
    padding: 24px 20px;
    border: 1px solid var(--gray-light);
}

.sidebar-services__title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}

.sidebar-services__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-services__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--graphite);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.sidebar-services__link:hover {
    color: var(--gold);
    background: rgba(195,160,75,0.05);
}

.sidebar-services__link.is-active {
    color: var(--gold);
    font-weight: 600;
    background: rgba(195,160,75,0.07);
}

.sidebar-services__link-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.sidebar-services__link.is-active .sidebar-services__link-dot,
.sidebar-services__link:hover .sidebar-services__link-dot {
    opacity: 1;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .service-content__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 48px 0 40px;
    }
}
