/* ═══════════════════════════════════════════════════════════
   GEOTIM — Główny arkusz stylów
   ─────────────────────────────────────────────────────────── */

/* ── 1. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }

/* ── 2. CSS VARIABLES ────────────────────────────────────── */
:root {
    /* Kolory — neutralny dark + złoty akcent */
    --color-bg:              #2E2E2E;   /* główne tło */
    --color-surface:         #2E2E2E;
    --color-surface-low:     #232323;   /* footer, dolne powierzchnie */
    --color-surface-cont:    #383838;   /* karty */
    --color-surface-cont-h:  #424242;
    --color-surface-bright:  #4f4f4f;
    --color-surface-variant: #3d3d3d;

    --color-primary:         #FFB77F;   /* jasny pomarańcz akcent dla tekstów */
    --color-primary-brand:   #F79030;   /* główny pomarańcz brand */
    --color-on-primary:      #2f1500;   /* ciemny tekst na pomarańczowym */

    --color-on-surface:      #f0f0f0;
    --color-on-surface-var:  #c0c0c0;
    --color-on-surface-mute: #888888;
    --color-outline:         #555555;
    --color-outline-faint:   rgba(255, 255, 255, 0.08);

    --color-white:           #ffffff;
    --color-success:         #4caf50;
    --color-error:           #ff6b6b;

    /* Glow / shadows */
    --glow-primary:          0 0 30px rgba(247, 144, 48, 0.25);
    --glow-primary-strong:   0 0 40px rgba(247, 144, 48, 0.4);
    --glow-soft:             0 0 15px rgba(247, 144, 48, 0.15);
    --shadow-card:           0 8px 30px rgba(0, 0, 0, 0.4);

    /* Typografia */
    --font-display:          'Sora', system-ui, -apple-system, sans-serif;
    --font-body:             'Sora', system-ui, -apple-system, sans-serif;
    --font-mono:             'JetBrains Mono', ui-monospace, 'Courier New', monospace;

    --text-2xs:   0.75rem;     /* 12px */
    --text-xs:    0.875rem;    /* 14px */
    --text-sm:    1rem;        /* 16px */
    --text-base:  1.125rem;    /* 18px */
    --text-lg:    1.25rem;     /* 20px */
    --text-xl:    1.5rem;      /* 24px */
    --text-2xl:   2rem;        /* 32px */
    --text-3xl:   2.5rem;      /* 40px */
    --text-4xl:   3rem;        /* 48px */
    --text-5xl:   4rem;        /* 64px */

    /* Spacing */
    --space-2xs: 0.25rem;
    --space-xs:  0.5rem;
    --space-sm:  0.75rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Container */
    --container-sm:  640px;
    --container-md:  960px;
    --container-lg:  1200px;
    --container-xl:  1400px;

    /* Radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   20px;
    --radius-full: 9999px;

    /* Transitions */
    --t-fast:   150ms ease;
    --t-base:   250ms ease;
    --t-slow:   400ms ease;

    /* Heights */
    --topbar-h:  0px;        /* topbar usunięty */
    --header-h:  80px;
}

/* ── 3. BODY ─────────────────────────────────────────────── */
body {
    background: var(--color-bg);
    background-image:
        /* Uniwersalna siatka 50x50 — ledwo widoczna pomarańcz (2.5%) */
        linear-gradient(rgba(247, 144, 48, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 144, 48, 0.025) 1px, transparent 1px),
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(247, 144, 48, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #383838 0%, #2E2E2E 30%, #262626 70%, #1F1F1F 100%);
    background-size: 50px 50px, 50px 50px, auto, auto;
    background-attachment: fixed;
    color: var(--color-on-surface);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    overflow-x: hidden;
}

/* ── 4. UTILITY ──────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    font-weight: 600;
}
.skip-link:focus { left: var(--space-md); top: var(--space-md); }

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-variation-settings: 'wght' 400, 'FILL' 0;
}

/* ── 5. BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--t-base), box-shadow var(--t-base), background-color var(--t-base), color var(--t-base), border-color var(--t-base);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn .material-symbols-outlined { font-size: 18px; transition: transform var(--t-base); }

.btn--sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }
.btn--lg { padding: 1.125rem 2rem; font-size: var(--text-base); }
.btn--xl { padding: 1.5rem 3rem; font-size: var(--text-lg); }

.btn--primary {
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--glow-primary); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-on-surface);
    border-color: rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: var(--color-primary-brand); color: var(--color-primary); }

.btn--glow { box-shadow: var(--glow-soft); }
.btn--glow:hover { box-shadow: var(--glow-primary-strong); }

.btn:hover .material-symbols-outlined { transform: translateX(3px); }

/* ── 6. TOPBAR ───────────────────────────────────────────── */
.topbar {
    background: #f5f5f5;
    height: var(--topbar-h);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    position: fixed;          /* fixed razem z headerem — żeby między nimi nie świeciła dziura */
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}
.topbar__inner {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar__left { display: flex; align-items: center; gap: var(--space-xs); }
.topbar__pulse {
    width: 8px; height: 8px;
    background: var(--color-primary-brand);
    border-radius: var(--radius-full);
    animation: pulse-dot 2s infinite;
}
.topbar__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555555;          /* ciepły brąz na kremowym */
}
.topbar__right { display: flex; align-items: center; gap: var(--space-lg); }
.topbar__phone {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: #1a1a1a;          /* ciemny brąz */
    transition: color var(--t-fast);
}
.topbar__phone:hover { color: var(--color-primary-brand); }
.topbar__cta {
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform var(--t-base);
}
.topbar__cta:hover { transform: scale(1.05); }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

/* ── 7. HEADER (jasny — biały, sticky) ───────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    height: var(--header-h);
    z-index: 200;
    background: rgba(255, 255, 255, 0.98);
    /* UWAGA: backdrop-filter tworzy nowy containing block dla position:fixed,
       co psuje side-drawer w nav. Używamy solid bg zamiast blur. */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 14px rgba(26, 18, 11, 0.05);
    transition: background var(--t-base), box-shadow var(--t-base);
}
.header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 18, 11, 0.10);
}
.header__inner {
    width: 100%;
    max-width: var(--container-xl);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}
.header__logo { display: flex; align-items: center; }
.header__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1a1a1a;          /* ciemny brąz na białym */
}
.header__logo-img { height: 64px; width: auto; max-width: 240px; display: block; }

.header__nav { display: flex; align-items: center; }
.header__nav-cta { display: none; } /* widoczne tylko w mobile drawer */
.header__menu { display: flex; gap: var(--space-xl); align-items: center; }
.header__menu a {
    color: #555555;           /* ciepły brąz na białym */
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--t-fast);
    position: relative;
}
.header__menu a:hover { color: var(--color-primary-brand); }
.header__menu a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary-brand);
    transition: width var(--t-base), left var(--t-base);
}
.header__menu a:hover::after { width: 100%; left: 0; }

.header__actions { display: flex; align-items: center; gap: var(--space-md); }

/* Phone CTA w headerze — ikona + numer (zamiast button + button) */
.header__phone-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    color: #1a1a1a;
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: var(--radius-full);
    transition: color var(--t-fast), background var(--t-fast);
}
.header__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    border-radius: var(--radius-full);
    font-size: 18px !important;
    box-shadow: var(--glow-soft);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.header__phone-cta:hover { color: var(--color-primary-brand); }
.header__phone-cta:hover .header__phone-icon {
    transform: scale(1.08);
    box-shadow: var(--glow-primary);
}

.header__toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.header__toggle span {
    width: 24px; height: 2px;
    background: #1a1a1a;
    transition: transform var(--t-base), opacity var(--t-base);
}
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main {
    padding-top: calc(var(--topbar-h) + var(--header-h));
}

/* WP admin-bar — kompensacja 32px (logged-in) / 46px (mobile <783px) */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .header { top: 46px; }
    .admin-bar .header__nav { top: calc(var(--header-h) + 46px); }
}

/* ── 8. HERO ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 65% 70% at 15% 30%, rgba(247, 144, 48, 0.13) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 85% 70%, rgba(247, 144, 48, 0.11) 0%, transparent 55%),
        linear-gradient(160deg, #383838 0%, #2A2A2A 50%, #1F1F1F 100%);
}
/* Hero — corner brackets dekoracyjne (UI techniczny) */
.hero__corners {
    position: absolute;
    inset: var(--space-xl);
    pointer-events: none;
    z-index: 1;
}
.hero__corners::before,
.hero__corners::after,
.hero__corners > span::before,
.hero__corners > span::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-primary-brand);
    opacity: 0.5;
}
.hero__corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero__corners::after  { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero__corners > span::before { bottom: 0; left: 0; border-right: none; border-top: none; }
.hero__corners > span::after  { bottom: 0; right: 0; border-left: none; border-top: none; }
.hero__corners > span {
    position: absolute;
    inset: 0;
    display: block;
}

/* Coordinate ticks na środku górnej krawędzi (technical detail) */
.hero__ticks {
    position: absolute;
    top: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(247, 144, 48, 0.5);
}
.hero__ticks span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.hero__ticks span::before {
    content: '';
    width: 1px;
    height: 8px;
    background: rgba(247, 144, 48, 0.4);
}
/* Hero — slideshow z Ken Burns (ACF: hero_backgrounds gallery) */
.hero {
    --hero-overlay: 0.55;
    --hero-slide-speed: 7s;
    --hero-fade-duration: 1.8s;
}

.hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--hero-fade-duration) ease-in-out;
    will-change: opacity;
}
.hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}
.hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    /* Bazowy stan = niezoomed. Transition robi powolny Ken Burns
       w obu kierunkach (in gdy aktywny, out gdy nieaktywny) — bez przeskoków */
    transform: scale(1.0) translate3d(0, 0, 0);
    transition: transform calc(var(--hero-slide-speed) + var(--hero-fade-duration)) linear;
}

/* Ken Burns — różne kierunki zoomu per slajd (gdy aktywny) */
.hero__slide--kb-in-center.is-active .hero__slide-img { transform: scale(1.14) translate3d(0, 0, 0); }
.hero__slide--kb-in-left.is-active   .hero__slide-img { transform: scale(1.14) translate3d(-3%, 0, 0); }
.hero__slide--kb-in-right.is-active  .hero__slide-img { transform: scale(1.14) translate3d(3%, 0, 0); }
.hero__slide--kb-out-top.is-active   .hero__slide-img { transform: scale(1.14) translate3d(0, -2.5%, 0); }
.hero__slide--kb-in-bottom.is-active .hero__slide-img { transform: scale(1.14) translate3d(0, 2.5%, 0); }

/* Overlay przyciemniający */
.hero--has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(247, 144, 48, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, calc(var(--hero-overlay) * 0.85)) 0%, rgba(0, 0, 0, var(--hero-overlay)) 70%, rgba(31, 31, 31, var(--hero-overlay)) 100%);
    pointer-events: none;
}
.hero--has-bg .hero__container { position: relative; z-index: 4; }
.hero--has-bg .hero__bg { z-index: 3; opacity: 0.35; }

/* Dots — kontrolki slideshow */
.hero__dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__dot {
    width: 28px;
    height: 6px;
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    padding: 0;
    border: 0;
    position: relative;
    overflow: hidden;
    transition: background var(--t-fast);
}
.hero__dot span {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: background var(--t-base);
}
.hero__dot:hover span { background: rgba(255, 255, 255, 0.6); }
.hero__dot.is-active span {
    background: var(--color-primary-brand);
    box-shadow: 0 0 8px rgba(247, 144, 48, 0.6);
}

/* Reduced motion — wyłącz Ken Burns */
@media (prefers-reduced-motion: reduce) {
    .hero__slide-img { transition: none; transform: none !important; }
    .hero__slide { transition: opacity 0.3s; }
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__topo {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.08) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.6;
}
.hero__glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(247, 144, 48, 0.12) 0%, transparent 60%);
    border-radius: var(--radius-full);
    filter: blur(60px);
}
.hero__container { position: relative; display: flex; flex-direction: column; align-items: center; gap: var(--space-lg); }
.hero__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    opacity: 0.9;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw + 1rem, var(--text-5xl));
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
}
.hero__highlight {
    display: block;
    color: var(--color-primary-brand);
    text-shadow: 0 0 20px rgba(247, 144, 48, 0.6);
}
.hero__lead {
    max-width: 700px;
    font-size: var(--text-base);
    color: var(--color-on-surface-var);
    line-height: 1.6;
}
.hero__actions { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; }
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    width: 100%;
    max-width: 1000px;
    margin-top: var(--space-lg);
}
.hero__stat { padding: var(--space-lg); display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); }
.hero__stat-value {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary-brand);
}
.hero__stat-label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-on-surface-mute);
}

/* ── 8b. ABOUT TEASER (sekcja "O nas" na home — JASNA) ──── */
.about-teaser {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(247, 144, 48, 0.025) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.025) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 55% 70% at 0% 50%, rgba(247, 144, 48, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    color: #1a1a1a;
}
.about-teaser__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}
.about-teaser__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e8e8e8;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px -10px rgba(26, 18, 11, 0.15);
}
.about-teaser__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Bias ku gorze - dla zdjec z osobami zawsze widac glowe */
    object-position: center 20%;
    transition: transform 700ms ease;
}
.about-teaser__media:hover .about-teaser__img { transform: scale(1.04); }

.about-teaser__content {
    padding: var(--space-md) 0;
}
.about-teaser__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-sm);
}
.about-teaser__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, var(--text-3xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: #1a1a1a;
}
.about-teaser__lead {
    color: #4a4a4a;
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}
.about-teaser__bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-lg);
}
.about-teaser__bullets li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: #1a1a1a;
    line-height: 1.4;
}
.about-teaser__bullets .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 18px !important;
    font-variation-settings: 'wght' 500;
    flex-shrink: 0;
}
.about-teaser__cta {
    margin-top: var(--space-sm);
}
/* Placeholder na jasnym tle (gdy brak zdjęcia) */
.about-teaser .placeholder {
    background: #ffffff;
    border-color: rgba(247, 144, 48, 0.4);
    color: #555555;
}
.about-teaser .placeholder__label { color: #1a1a1a; }

/* ── 9. SERVICES ─────────────────────────────────────────── */
.services {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 55% 70% at 100% 30%, rgba(247, 144, 48, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 80%,   rgba(247, 144, 48, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #2A2A2A 0%, #232323 100%);
}
.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    animation: glow-drift-1 16s ease-in-out infinite alternate;
}
.services > * { position: relative; z-index: 1; }
.services__header { margin-bottom: var(--space-2xl); max-width: 800px; }
.services__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-sm);
}
.services__heading {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}
.services__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-base);
    max-width: 600px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* ─── Service card (czysta wersja: ikona central, akcent top + corner) ─── */
.service-card {
    position: relative;
    aspect-ratio: 1 / 1;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-on-surface);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}

/* Cienka pomarańcz linia na górze — rośnie z lewej do prawej na hover */
.service-card__topline {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 30%;
    background: linear-gradient(90deg, var(--color-primary-brand), transparent);
    transition: width var(--t-slow), opacity var(--t-base);
    opacity: 0.7;
}

/* Diagonalny pomarańczowy trójkąt w prawym górnym rogu */
.service-card__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, rgba(247, 144, 48, 0.18) 0%, transparent 60%);
    pointer-events: none;
    transition: background var(--t-base);
}

/* Numer — dyskretny w lewym górnym rogu */
.service-card__num {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(247, 144, 48, 0.6);
    transition: color var(--t-base);
}

/* Ikona — centralna, duża */
.service-card__icon {
    font-size: 56px !important;
    color: var(--color-primary-brand);
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: var(--space-md);
    transition: transform var(--t-slow), color var(--t-base);
    font-variation-settings: 'wght' 300;
}
.service-card__icon--svg {
    width: 56px;
    height: 56px;
    object-fit: contain;
    font-size: 0 !important;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--color-on-surface);
    transition: color var(--t-base);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    transition: gap var(--t-base);
}
.service-card__link .material-symbols-outlined {
    font-size: 16px !important;
    transition: transform var(--t-base);
}

/* Hover — wszystko subtelnie ożywa */
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 144, 48, 0.4);
    background: rgba(247, 144, 48, 0.04);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5),
                0 0 24px rgba(247, 144, 48, 0.15);
}
.service-card:hover .service-card__topline {
    width: 100%;
    opacity: 1;
}
.service-card:hover .service-card__corner {
    background: linear-gradient(225deg, rgba(247, 144, 48, 0.35) 0%, transparent 70%);
}
.service-card:hover .service-card__num { color: var(--color-primary-brand); }
.service-card:hover .service-card__icon {
    transform: translateX(6px) scale(1.08);
}
.service-card:hover .service-card__link { gap: var(--space-sm); }
.service-card:hover .service-card__link .material-symbols-outlined { transform: translateX(4px); }

/* ── 10. CAPABILITIES ────────────────────────────────────── */
.capabilities {
    /* warianty: domyślnie ciemny, .capabilities--light = jasny */
    --cap-bg:           transparent;
    --cap-text:         var(--color-on-surface);
    --cap-text-var:     var(--color-on-surface-var);
    --cap-text-mute:    var(--color-on-surface-mute);
    --cap-card-bg:      rgba(255, 255, 255, 0.02);
    --cap-card-border:  rgba(247, 144, 48, 0.2);
    --cap-card-hover:   rgba(255, 255, 255, 0.05);
}
.capabilities--light {
    --cap-bg:           #f5f5f5;        /* jasna kremowa biel (ciepły off-white) */
    --cap-text:         #1a1a1a;         /* główny tekst — bardzo ciemny brąz */
    --cap-text-var:     #555555;         /* tekst drugorzędny — ciepły brąz */
    --cap-text-mute:    #888888;         /* tekst trzeciorzędny */
    --cap-card-bg:      #ffffff;
    --cap-card-border:  rgba(247, 144, 48, 0.3);
    --cap-card-hover:   #fafafa;
    background: var(--cap-bg);
}
.capabilities--light .capabilities__heading,
.capabilities--light .capability__title { color: var(--cap-text); }
.capabilities--light .capabilities__lead,
.capabilities--light .capability__desc { color: var(--cap-text-var); }
.capabilities--light .capability {
    background: var(--cap-card-bg);
    border-left-color: var(--cap-card-border);
    box-shadow: 0 2px 12px rgba(26, 18, 11, 0.06);
}
.capabilities--light .capability:hover {
    background: var(--cap-card-hover);
    border-left-color: var(--color-primary-brand);
    box-shadow: 0 8px 24px rgba(247, 144, 48, 0.15);
}

.capabilities__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
.capabilities__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-sm);
}
.capabilities__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 560px;
}
.capabilities__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-outline-faint);
    aspect-ratio: 16 / 10;
}
.capabilities__img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.capabilities__media:hover .capabilities__img { transform: scale(1.05); }
.capabilities__media-caption {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding-top: var(--space-3xl);
    padding-right: var(--space-3xl);
}
.capabilities__media-kicker {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-xs);
}
.capabilities__media-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
}
.capabilities__heading {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}
.capabilities__list { display: flex; flex-direction: column; gap: var(--space-md); }
.capability {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-left: 2px solid rgba(247, 144, 48, 0.2);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--t-base), background var(--t-base);
}
.capability:hover {
    border-left-color: var(--color-primary-brand);
    background: rgba(255, 255, 255, 0.05);
}
.capability__icon {
    color: var(--color-primary-brand);
    font-size: 28px !important;
    flex-shrink: 0;
}
.capability__icon--svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.capability__title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2xs);
}
.capability__desc {
    color: var(--color-on-surface-mute);
    font-size: var(--text-xs);
    line-height: 1.5;
}

/* ── 11. COVERAGE (interaktywna mapa SVG powiatów + topo kontury) ─── */
.coverage {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 60% 70% at 20% 50%, rgba(247, 144, 48, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 30%, rgba(247, 144, 48, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #353535 0%, #2A2A2A 50%, #1F1F1F 100%);
}
.coverage::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(247, 144, 48, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: glow-drift-2 20s ease-in-out infinite alternate;
}
.coverage > * { position: relative; z-index: 1; }
.coverage__header {
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}
.coverage__heading {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}
.coverage__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-base);
}

.coverage__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 1fr);
    gap: var(--space-2xl);
    align-items: center;
}

/* Wrapper mapy (relative do tooltipa, bez tła) */
.coverage__map-wrap {
    position: relative;
    padding: var(--space-xl);
}

/* SVG — responsywne skalowanie */
.coverage__svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Pojedynczy powiat */
.county {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(247, 144, 48, 0.35);
    stroke-width: 1.5;
    cursor: pointer;
    transition: fill 200ms ease, stroke 200ms ease, transform 250ms ease, filter 250ms ease;
    transform-origin: center;
    transform-box: fill-box;
}
.county:hover,
.county.is-active {
    fill: var(--color-primary-brand);
    stroke: var(--color-primary-brand);
    filter: drop-shadow(0 0 12px rgba(247, 144, 48, 0.5));
}
/* Powiat ełcki (siedziba) — subtelne podświetlenie tła, bez animacji
   (puls jest teraz na markerze miasta Ełk) */
.county--hq {
    fill: rgba(247, 144, 48, 0.18);
    stroke: var(--color-primary-brand);
    stroke-width: 1.5;
}
.county--hq:hover {
    fill: var(--color-primary-brand);
    filter: drop-shadow(0 0 16px rgba(247, 144, 48, 0.5));
}

/* City marker — Ełk, siedziba (czarna kropka + pomarańczowy puls + label) */
.coverage__city-marker { pointer-events: none; }
.coverage__city-dot {
    fill: #0a0a0a;
    stroke: var(--color-primary-brand);
    stroke-width: 1.5;
}
.coverage__city-core {
    fill: var(--color-primary-brand);
}
.coverage__city-pulse {
    fill: rgba(247, 144, 48, 0.5);
    transform-origin: 1238px 248px;
    transform-box: view-box;
    animation: city-marker-pulse 2.2s ease-out infinite;
}
@keyframes city-marker-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    80%  { transform: scale(4.5); opacity: 0;   }
    100% { transform: scale(4.5); opacity: 0;   }
}
.coverage__city-label {
    fill: var(--color-on-surface);
    font-family: var(--font-mono);
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
    paint-order: stroke fill;
    stroke: #0a0a0a;
    stroke-width: 2.5;
    stroke-linejoin: round;
}

/* Tooltip */
.coverage__tooltip {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: var(--color-surface-low);
    border: 1px solid var(--color-primary-brand);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 12px rgba(247, 144, 48, 0.2);
    opacity: 0;
    transform: translate(-50%, calc(-100% - 12px));
    transition: opacity 150ms ease;
    white-space: nowrap;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.coverage__tooltip.is-visible { opacity: 1; }
.coverage__tooltip-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary-brand);
    font-size: var(--text-sm);
}
.coverage__tooltip-label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-on-surface-mute);
}

/* Legenda */
.coverage__legend {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.coverage__legend-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
    overflow: hidden;
    list-style: none;
}
.coverage__legend-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    transition: transform var(--t-fast);
}
.coverage__legend-item:hover,
.coverage__legend-item.is-active {
    background: rgba(247, 144, 48, 0.10);
    border-color: var(--color-primary-brand);
}
.coverage__legend-item:hover .coverage__legend-link,
.coverage__legend-item.is-active .coverage__legend-link {
    transform: translateX(4px);
}
.coverage__legend-arrow {
    margin-left: auto;
    font-size: 18px !important;
    color: var(--color-primary-brand);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.coverage__legend-item:hover .coverage__legend-arrow,
.coverage__legend-item.is-active .coverage__legend-arrow,
.coverage__legend-item--hq .coverage__legend-arrow {
    opacity: 1;
    transform: translateX(0);
}
/* SVG <a> wrapper - reset default browser styling */
.coverage__svg a { cursor: pointer; outline: none; }
.coverage__svg a:focus-visible .county { stroke-width: 3; }
.coverage__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(247, 144, 48, 0.4);
    border: 1px solid var(--color-primary-brand);
    flex-shrink: 0;
    transition: background var(--t-fast), box-shadow var(--t-fast);
}
.coverage__legend-item:hover .coverage__legend-dot,
.coverage__legend-item.is-active .coverage__legend-dot {
    background: var(--color-primary-brand);
    box-shadow: 0 0 8px var(--color-primary-brand);
}
.coverage__legend-item--hq .coverage__legend-dot {
    background: var(--color-primary-brand);
    box-shadow: 0 0 8px var(--color-primary-brand);
    width: 12px;
    height: 12px;
}
.coverage__legend-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-on-surface);
    font-size: var(--text-sm);
    flex: 1;
}
.coverage__legend-badge {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    padding: 2px 8px;
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* Stopka sekcji — "cała Polska" */
.coverage__nationwide {
    margin-top: var(--space-2xl);
    text-align: center;
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}
.coverage__nationwide .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 22px;
}
.coverage__nationwide strong { color: var(--color-on-surface); font-weight: 700; }

/* ── 12. TRUST ───────────────────────────────────────────── */
/* Trust — wariant jasny (białe tło, ciemny tekst) */
.trust--light {
    --trust-bg:          #f5f5f5;
    --trust-text:        #1a1a1a;
    --trust-text-var:    #555555;
    --trust-text-mute:   #888888;
    --trust-card-bg:     #ffffff;
    --trust-card-border: rgba(247, 144, 48, 0.3);
    background: var(--trust-bg);
    color: var(--trust-text);
}
.trust--light .trust__heading,
.trust--light .trust__gallery-heading,
.trust--light .trust__rating-value { color: var(--trust-text); }
.trust--light .trust__lead,
.trust--light .trust__rating-source { color: var(--trust-text-var); }
.trust--light .trust__rating {
    background: var(--trust-card-bg);
    border: 1px solid var(--trust-card-border);
    box-shadow: 0 2px 12px rgba(26, 18, 11, 0.06);
}
.trust--light .trust__gallery-item { background: #e0e0e0; }
.trust--light .placeholder {
    background: #ffffff;
    border-color: rgba(247, 144, 48, 0.4);
    color: var(--trust-text-mute);
}
.trust--light .placeholder__label { color: var(--trust-text-var); }

/* Reviews wrapper (Trustindex) */
.trust__reviews {
    margin-bottom: var(--space-2xl);
    min-height: 100px;
}
.trust__reviews-fallback {
    padding: var(--space-xl);
    background: rgba(247, 144, 48, 0.08);
    border: 1px dashed var(--color-primary-brand);
    border-radius: var(--radius-lg);
    color: var(--trust-text, var(--color-on-surface));
}
.trust__reviews-fallback code {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-primary-brand);
}
/* Wymuś estetykę widgetu Trustindex w stylu motywu (best-effort) */
.trust--light .trust__reviews .ti-widget,
.trust--light .trust__reviews .ti-reviews-container { background: transparent !important; }

.trust__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}
.trust__heading {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}
.trust__lead { color: var(--color-on-surface-var); }
.trust__rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
}
.trust__stars { display: flex; gap: var(--space-2xs); color: var(--color-primary-brand); }
.trust__stars .material-symbols-outlined { font-size: 20px; font-variation-settings: 'FILL' 1; }
.trust__rating-value {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: 600;
}
.trust__rating-source {
    border-left: 1px solid var(--color-outline-faint);
    padding-left: var(--space-md);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-on-surface-mute);
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.testimonial {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.testimonial__quote {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--color-on-surface-var);
    font-style: italic;
}
.testimonial__author { display: flex; flex-direction: column; gap: var(--space-2xs); margin-top: auto; }
.testimonial__name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-on-surface);
}
.testimonial__role {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-mute);
}

/* Trust → wewnętrzna galeria (scalona sekcja z mockupu) */
.trust__gallery-header {
    text-align: center;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-xl);
}
.trust__gallery-heading {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
.trust__gallery-kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}
.trust__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.trust__gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--color-surface-low);
    position: relative;
}
.trust__gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}
.trust__gallery-item:hover .trust__gallery-img { transform: scale(1.05); }

/* ── 13. GALLERY (osobna sekcja, ciemny gradient + glow orbs + survey markers) ─ */
.gallery {
    color: var(--color-on-surface);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 60% 80% at 0% 0%,    rgba(247, 144, 48, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 70% at 100% 0%,  rgba(247, 144, 48, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 100% 100%, rgba(247, 144, 48, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 100%,  rgba(247, 144, 48, 0.08) 0%, transparent 55%),
        linear-gradient(200deg, #2D2D2D 0%, #1E1E1E 100%);
}
.gallery::before,
.gallery::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}
.gallery::before {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.25) 0%, transparent 70%);
    animation: glow-drift-1 14s ease-in-out infinite alternate;
}
.gallery::after {
    bottom: 5%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.20) 0%, transparent 70%);
    animation: glow-drift-2 18s ease-in-out infinite alternate;
}
.gallery > * { position: relative; z-index: 1; }

@keyframes glow-drift-1 {
    0%   { transform: translate(0, 0)   scale(1);   opacity: 0.9; }
    100% { transform: translate(60px, 40px) scale(1.15); opacity: 1; }
}
@keyframes glow-drift-2 {
    0%   { transform: translate(0, 0)    scale(1);   opacity: 0.85; }
    100% { transform: translate(-40px, -60px) scale(1.1); opacity: 1; }
}
.gallery::before {
    /* delikatny topograficzny pattern w tle */
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.7;
}
.gallery__container { position: relative; z-index: 1; }
.gallery__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.gallery__heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-on-surface);
}
.gallery__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-md);
}
.gallery__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-top: var(--space-sm);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--color-surface-low);
    position: relative;
    border-radius: var(--radius-sm);
}
.gallery__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 700ms ease, filter 400ms ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.05); filter: brightness(0.85); }

/* Home gallery — overlay z ikoną zoom na hover */
.gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay::before {
    content: '';
    width: 48px;
    height: 48px;
    background: var(--color-primary-brand);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'><path d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
}
.gallery__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.gallery__hint {
    margin-top: var(--space-md);
    display: flex; align-items: center; gap: var(--space-xs); justify-content: center;
    color: var(--color-on-surface-mute);
    font-size: var(--text-xs);
}

/* ── 14. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner__glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.25) 0%, transparent 60%);
    border-radius: var(--radius-full);
    filter: blur(80px);
}
.cta-banner__container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-banner__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw + 1rem, var(--text-4xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

/* ── 15. CONTACT ─────────────────────────────────────────── */
/* Wariant jasny: białe tło sekcji, brązowe karty w środku */
.contact--light {
    background: #f5f5f5;
}
.contact--light .contact__form,
.contact--light .contact__location {
    background: var(--color-surface);     /* #1a1a1a — ciepły brąz */
    border: 1px solid rgba(247, 144, 48, 0.18);
    box-shadow: 0 12px 32px -8px rgba(26, 18, 11, 0.15);
    backdrop-filter: none;                 /* override glass-card */
}
.contact--light .contact__topo {
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.08) 1px, transparent 0);
}

.contact__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: stretch;
}
.contact__form { padding: var(--space-2xl); }
.contact__heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}
.contact__lead {
    color: var(--color-on-surface-var);
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
}

/* ── Nowoczesny formularz: floating labels + icon prefix + animated button ── */
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form__field {
    position: relative;
    display: block;
}

.contact-form__icon {
    position: absolute;
    top: 50%;
    left: var(--space-md);
    transform: translateY(-50%);
    color: var(--color-on-surface-mute);
    font-size: 20px !important;
    pointer-events: none;
    transition: color 220ms ease, transform 220ms ease;
    z-index: 2;
}
.contact-form__field--textarea .contact-form__icon {
    top: var(--space-md);
    transform: none;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: var(--space-lg) var(--space-md) var(--space-sm) calc(var(--space-md) * 2 + 20px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-on-surface);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    appearance: none;
    -webkit-appearance: none;
}
.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: calc(var(--space-lg) + 4px);
}

/* Floating label — domyślnie zachowuje się jak placeholder w środku inputa */
.contact-form__label {
    position: absolute;
    left: calc(var(--space-md) * 2 + 20px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-on-surface-mute);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    pointer-events: none;
    transition: top 220ms ease, transform 220ms ease, font-size 220ms ease, color 220ms ease, letter-spacing 220ms ease;
    background: transparent;
    padding: 0 4px;
    z-index: 2;
}
.contact-form__field--textarea .contact-form__label {
    top: calc(var(--space-md) + 4px);
    transform: none;
}

/* Kiedy input jest fokusowany lub ma wartość → label leci do góry */
.contact-form__input:focus + .contact-form__label,
.contact-form__input:not(:placeholder-shown) + .contact-form__label,
.contact-form__textarea:focus + .contact-form__label,
.contact-form__textarea:not(:placeholder-shown) + .contact-form__label {
    top: -8px;
    transform: translateY(0);
    font-size: var(--text-2xs);
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    background: var(--color-surface);
    padding: 0 6px;
}

/* Focus state — pomarańczowa krawędź + glow */
.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary-brand);
    background: rgba(247, 144, 48, 0.04);
    box-shadow: 0 0 0 3px rgba(247, 144, 48, 0.15);
}
.contact-form__input:focus ~ .contact-form__icon,
.contact-form__textarea:focus ~ .contact-form__icon {
    color: var(--color-primary-brand);
    transform: translateY(-50%) scale(1.1);
}
.contact-form__field--textarea .contact-form__textarea:focus ~ .contact-form__icon {
    transform: scale(1.1);
}

/* RODO — z ikoną */
.contact-form__rodo {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-mute);
    line-height: 1.5;
    margin: var(--space-xs) 0 0;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-form__rodo .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 16px !important;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-form__rodo a { color: var(--color-primary-brand); text-decoration: underline; }

/* Submit button — z animowanym shine effect i sliding arrow */
.contact-form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary-brand) 0%, #e07a1f 100%);
    color: var(--color-on-primary);
    border: 0;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    margin-top: var(--space-sm);
    transition: transform 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 6px 20px rgba(247, 144, 48, 0.3);
}
.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(247, 144, 48, 0.45);
}
.contact-form__submit:active {
    transform: translateY(0);
}
.contact-form__submit-text { position: relative; z-index: 2; }
.contact-form__submit-icon {
    position: relative;
    z-index: 2;
    font-size: 20px !important;
    transition: transform 220ms ease;
}
.contact-form__submit:hover .contact-form__submit-icon { transform: translateX(6px); }

/* Animowany shine effect przy hover */
.contact-form__submit-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    pointer-events: none;
    transition: left 600ms ease;
}
.contact-form__submit:hover .contact-form__submit-shine { left: 130%; }

.contact-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.geotim-form__submit { width: 100%; margin-top: var(--space-sm); }
.geotim-form__message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}
.geotim-form__message--success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: var(--color-success);
}
.geotim-form__message--error {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: var(--color-error);
}

.contact__info { display: flex; flex-direction: column; gap: var(--space-md); }
.contact__info-card {
    padding: var(--space-xl);
    text-align: center;
    flex-shrink: 0;
}
.contact__pin {
    display: inline-flex;
    width: 56px; height: 56px;
    background: var(--color-primary-brand);
    border-radius: var(--radius-full);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: var(--glow-primary);
}
.contact__pin .material-symbols-outlined { color: var(--color-on-primary); font-size: 28px; }
.contact__info-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}
.contact__info-address {
    color: var(--color-on-surface-var);
    margin-bottom: var(--space-md);
    font-style: normal;
}
.contact__info-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-outline-faint);
}
.contact__info-kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}
.contact__info-meta a { color: var(--color-on-surface); }
.contact__info-meta a:hover { color: var(--color-primary); }

.contact__map {
    flex: 1;
    min-height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-outline-faint);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

/* Wariant z mapą — iframe wypełnia całą kartę + floating info card */
.contact__location--map {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-outline-faint);
    min-height: 480px;
    height: 100%;
    background: var(--color-surface-cont);
}
.contact__location--map iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
    filter: saturate(0.85) contrast(0.95);
}

/* Floating info card nad mapą */
.contact__map-card {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    z-index: 3;
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md) var(--space-lg);
    background: rgba(46, 46, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 144, 48, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: var(--color-on-surface);
}
.contact__map-pin {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary-brand);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(247, 144, 48, 0.5);
}
.contact__map-pin .material-symbols-outlined {
    color: var(--color-on-primary);
    font-size: 22px !important;
}
.contact__map-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    margin: 0 0 var(--space-2xs);
    color: var(--color-on-surface);
}
.contact__map-address {
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 4px;
}
.contact__map-hours {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}

/* Contact — karta lokalizacji (nowa, zamiast iframe) */
.contact__location {
    position: relative;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface-cont);
}
.contact__topo {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.06) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.contact__location-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    height: 100%;
    min-height: 400px;
}
.contact__location .contact__pin {
    position: relative;
    width: 56px; height: 56px;
    background: var(--color-primary-brand);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    box-shadow: var(--glow-primary);
}
.contact__pin-pulse {
    position: absolute;
    inset: 0;
    background: var(--color-primary-brand);
    border-radius: var(--radius-full);
    animation: pulse-pin 2s infinite;
}
.contact__location .contact__pin .material-symbols-outlined {
    color: var(--color-on-primary);
    font-size: 28px;
    position: relative;
    z-index: 2;
}
.contact__location-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}
.contact__location-address {
    color: var(--color-on-surface-var);
    margin-bottom: var(--space-md);
    font-style: normal;
    line-height: 1.6;
}
.contact__location-hours {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}

/* ── 16. FOOTER ──────────────────────────────────────────── */
.footer {
    position: relative;
    color: var(--color-on-surface);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 50% 60% at 80% 0%, rgba(247, 144, 48, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #1F1F1F 0%, #161616 60%, #0F0F0F 100%);
}
.footer::before {
    /* cienka linia akcentu na samej górze */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary-brand) 30%, var(--color-primary-brand) 70%, transparent);
    z-index: 2;
}

/* Tło: topograficzny pattern + glow w rogu */
.footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.footer__bg-topo {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.5;
}
.footer__bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.10) 0%, transparent 60%);
    border-radius: var(--radius-full);
    filter: blur(60px);
}

/* CTA Banner */
.footer__cta {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__cta-inner {
    max-width: var(--container-xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
}
.footer__cta-kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-xs);
}
.footer__cta-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, var(--text-2xl));
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-on-surface);
    margin-bottom: var(--space-xs);
}
.footer__cta-lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
}
.footer__cta-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}
.footer__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    box-shadow: var(--glow-soft);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.footer__cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary-strong);
}
.footer__cta-phone .material-symbols-outlined { font-size: 22px !important; }

/* Main grid */
.footer__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: var(--space-2xl);
}

.footer__brand { margin-bottom: var(--space-lg); }
.footer__logo {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-on-surface);
    line-height: 1;
}
.footer__logo-img {
    display: block;
    height: 64px;
    width: auto;
    max-width: 240px;
}
.footer__tagline {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-top: var(--space-xs);
}
.footer__text {
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}
.footer__social { display: flex; gap: var(--space-xs); }
.footer__social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--color-on-surface-var);
    transition: color var(--t-base), background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.footer__social-link:hover {
    color: var(--color-on-primary);
    background: var(--color-primary-brand);
    border-color: var(--color-primary-brand);
    transform: translateY(-2px);
    box-shadow: var(--glow-soft);
}

.footer__heading {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}
.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary-brand);
    opacity: 0.4;
}
.footer__heading--secondary { margin-top: var(--space-xl); }

.footer__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__list li { line-height: 1.4; }
.footer__list a {
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
    transition: color var(--t-fast), padding-left var(--t-fast);
    display: inline-block;
    position: relative;
}
.footer__list a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    color: var(--color-primary-brand);
    transition: opacity var(--t-fast), left var(--t-fast);
}
.footer__list a:hover {
    color: var(--color-primary-brand);
    padding-left: 18px;
}
.footer__list a:hover::before {
    opacity: 1;
    left: 0;
}
.footer__list--cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs) var(--space-md);
}
.footer__list--cities li {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-mute);
    letter-spacing: 0.05em;
}
.footer__list--cities li::before {
    content: '•';
    color: var(--color-primary-brand);
    margin-right: 6px;
}

/* Contact column (NAP) */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    font-style: normal;
}
.footer__contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}
.footer__contact-row:last-child { border-bottom: none; }
.footer__contact-row > div { display: flex; flex-direction: column; gap: 2px; }
.footer__contact-row strong {
    display: block;
    color: var(--color-on-surface);
    font-weight: 700;
    margin-bottom: var(--space-2xs);
    font-family: var(--font-display);
}
.footer__contact-icon {
    color: var(--color-primary-brand) !important;
    font-size: 18px !important;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer__contact-label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-on-surface-mute);
}
.footer__contact-value {
    color: var(--color-on-surface);
    font-size: var(--text-xs);
    font-weight: 500;
}
.footer__contact-row--link { transition: background var(--t-fast); border-radius: var(--radius-sm); }
.footer__contact-row--link:hover { background: rgba(247, 144, 48, 0.04); }
.footer__contact-row--link:hover .footer__contact-value { color: var(--color-primary-brand); }
.footer__contact-row--address {
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
}

/* Bottom bar */
.footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}
.footer__bottom-inner {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}
.footer__legal,
.footer__bottom-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}
.footer__legal,
.footer__bottom-links a {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.05em;
    color: var(--color-on-surface-mute);
}
.footer__bottom-links a { transition: color var(--t-fast); text-decoration: none; }
.footer__bottom-links a:hover { color: var(--color-primary-brand); }
.footer__legal-sep { color: var(--color-outline); opacity: 0.5; }

/* wp_nav_menu w stopce — stylowanie jako inline lista z separatorem · */
.footer__bottom-menu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__bottom-menu li {
    display: flex;
    align-items: center;
}
.footer__bottom-menu li:not(:last-child)::after {
    content: '·';
    margin-left: var(--space-sm);
    color: var(--color-outline);
    opacity: 0.5;
}
.footer__bottom-menu a {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.05em;
    color: var(--color-on-surface-mute);
    text-decoration: none;
    transition: color var(--t-fast);
}
.footer__bottom-menu a:hover { color: var(--color-primary-brand); }

.footer__signature {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: opacity var(--t-base);
}
.footer__signature:hover { opacity: 0.7; }
.footer__signature-label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-on-surface-mute);
}
.footer__signature-logo {
    height: 22px;
    width: auto;
    display: block;
    opacity: 0.8;
    transition: opacity var(--t-base);
}
.footer__signature:hover .footer__signature-logo { opacity: 1; }

/* ── 17. BREADCRUMBS ─────────────────────────────────────── */
.breadcrumbs { margin-bottom: var(--space-lg); }
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-mute);
}
.breadcrumbs__item:not(:last-child)::after { content: '/'; margin-left: var(--space-xs); color: var(--color-outline); }
.breadcrumbs__link { color: var(--color-on-surface-var); transition: color var(--t-fast); }
.breadcrumbs__link:hover { color: var(--color-primary-brand); }
.breadcrumbs__item--current { color: var(--color-on-surface); }

/* ── 18. PLACEHOLDER (gdy brak ACF image) ────────────────── */
.placeholder {
    background: var(--color-surface-cont);
    border: 2px dashed rgba(247, 144, 48, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-on-surface-mute);
    text-align: center;
    padding: var(--space-xl);
    min-height: 240px;
}
.placeholder .material-symbols-outlined { font-size: 48px; color: var(--color-primary-brand); opacity: 0.5; }
.placeholder__label {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-on-surface-var);
}
.placeholder__hint {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-mute);
}
.placeholder--square { aspect-ratio: 1 / 1; min-height: 0; }
.placeholder--16x9 { aspect-ratio: 16 / 9; min-height: 0; }
.placeholder--16x10 { aspect-ratio: 16 / 10; min-height: 0; }

/* ── 19. PAGE CONTENT (fallback page.php) ────────────────── */
.page-content__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-xl);
}
.prose {
    max-width: 760px;
    color: var(--color-on-surface-var);
    line-height: 1.8;
}
.prose h2 { font-family: var(--font-display); font-size: var(--text-2xl); margin-top: var(--space-xl); margin-bottom: var(--space-md); color: var(--color-on-surface); }
.prose h3 { font-family: var(--font-display); font-size: var(--text-xl); margin-top: var(--space-lg); margin-bottom: var(--space-sm); color: var(--color-on-surface); }
.prose p { margin-bottom: var(--space-md); }
.prose a { color: var(--color-primary-brand); text-decoration: underline; }
.prose ul, .prose ol { margin-bottom: var(--space-md); padding-left: var(--space-lg); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

/* ── 19a. SERVICES TILES (strona /uslugi/) ──────────────── */
.services-tiles {
    position: relative;
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(247, 144, 48, 0.04) 0%, transparent 65%),
        linear-gradient(180deg, #2A2A2A 0%, #232323 100%);
}
.services-tiles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-tile {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t-base), border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.service-tile__topline {
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 40%;
    background: linear-gradient(90deg, var(--color-primary-brand), transparent);
    transition: width var(--t-slow), opacity var(--t-base);
    opacity: 0.7;
}
.service-tile__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}
.service-tile__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(247, 144, 48, 0.15), rgba(247, 144, 48, 0.04));
    border: 1px solid rgba(247, 144, 48, 0.3);
    border-radius: var(--radius-md);
    transition: background var(--t-base), transform var(--t-base);
}
.service-tile__icon {
    font-size: 36px !important;
    color: var(--color-primary-brand);
    font-variation-settings: 'wght' 400;
    transition: transform var(--t-base);
}
.service-tile__num {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(247, 144, 48, 0.6);
    transition: color var(--t-base);
}
.service-tile__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-on-surface);
}
.service-tile__desc {
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
    line-height: 1.65;
    flex: 1;
}
.service-tile__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    transition: gap var(--t-base);
    align-self: flex-start;
}
.service-tile__link .material-symbols-outlined {
    font-size: 16px !important;
    transition: transform var(--t-base);
}

.service-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 144, 48, 0.35);
    background: rgba(247, 144, 48, 0.04);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5),
                0 0 24px rgba(247, 144, 48, 0.15);
}
.service-tile:hover .service-tile__topline { width: 100%; opacity: 1; }
.service-tile:hover .service-tile__num { color: var(--color-primary-brand); }
.service-tile:hover .service-tile__icon-wrap {
    background: linear-gradient(135deg, rgba(247, 144, 48, 0.3), rgba(247, 144, 48, 0.08));
    transform: scale(1.05);
}
.service-tile:hover .service-tile__icon { transform: rotate(-4deg); }
.service-tile:hover .service-tile__link { gap: var(--space-sm); }
.service-tile:hover .service-tile__link .material-symbols-outlined { transform: translateX(4px); }

/* ── 19a2. SERVICES CTA (strip na końcu /uslugi/) ──────── */
.services-cta {
    background: #f5f5f5;
    color: #1a1a1a;
    padding: var(--space-3xl) 0;
}
.services-cta__card {
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
    border: 1px solid rgba(247, 144, 48, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: var(--space-xl);
    align-items: center;
    color: var(--color-on-surface);
    box-shadow: 0 20px 40px -12px rgba(26, 18, 11, 0.15);
    position: relative;
    overflow: hidden;
}
.services-cta__card::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.18) 0%, transparent 60%);
    border-radius: var(--radius-full);
    filter: blur(40px);
    pointer-events: none;
}
.services-cta__content { position: relative; z-index: 1; }
.services-cta__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw + 0.5rem, var(--text-2xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--color-on-surface);
}
.services-cta__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
    line-height: 1.6;
    max-width: 560px;
}
.services-cta__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}
.services-cta__actions .btn { justify-content: center; min-width: 220px; }
.services-cta__card .btn--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-on-surface);
    border-color: rgba(255, 255, 255, 0.15);
}
.services-cta__card .btn--ghost:hover {
    background: rgba(247, 144, 48, 0.1);
    color: var(--color-primary-brand);
    border-color: var(--color-primary-brand);
}

/* ── 19a3c. FAQ ACCORDION (Najczęstsze pytania) ──────────── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(247, 144, 48, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--t-base), background var(--t-base);
}
.faq-item[open] {
    background: rgba(247, 144, 48, 0.04);
    border-color: rgba(247, 144, 48, 0.3);
    border-left-color: var(--color-primary-brand);
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-on-surface);
    list-style: none;
    transition: color var(--t-fast);
    user-select: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::marker { content: ''; }
.faq-item:hover .faq-item__question { color: var(--color-primary-brand); }
.faq-item[open] .faq-item__question { color: var(--color-primary-brand); }
.faq-item__icon {
    flex-shrink: 0;
    font-size: 24px !important;
    color: var(--color-primary-brand);
    transition: transform var(--t-base);
}
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--color-on-surface-var);
    font-size: var(--text-sm);
    line-height: 1.7;
    animation: faq-fade-in 220ms ease-out;
}
.faq-item__answer > div { margin-top: var(--space-xs); }

@keyframes faq-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Override .prose styles które wymuszają h3 → pomarańcz */
.usluga-content__body.prose .faq-accordion .faq-item__question { margin: 0; padding: var(--space-md) var(--space-lg); }
.usluga-content__body.prose .faq-accordion p { margin: 0; }

/* ── 19a3b. SINGLE USLUGA — placeholdery dla niepełnionych treści ─ */
.usluga-placeholder-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(247, 144, 48, 0.08);
    border: 1px dashed var(--color-primary-brand);
    border-radius: var(--radius-md);
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
    line-height: 1.5;
    margin-bottom: var(--space-xl);
}
.usluga-placeholder-notice .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 20px !important;
    flex-shrink: 0;
}

.usluga-lead-paragraph {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    line-height: 1.5;
    color: var(--color-on-surface);
    margin-bottom: var(--space-lg) !important;
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-primary-brand);
}
.usluga-intro-content {
    margin-bottom: var(--space-xl);
    color: var(--color-on-surface-var);
}
.usluga-intro-content p { margin-bottom: var(--space-md); }

/* Realna grafika (po wgraniu w ACF) */
.usluga-image {
    margin: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.usluga-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.usluga-image--wide img {
    aspect-ratio: 16 / 9;
}
.usluga-image figcaption {
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-on-surface-mute);
    font-size: var(--text-xs);
    font-style: italic;
    text-align: center;
    border-top: 1px solid rgba(247, 144, 48, 0.2);
}

/* Makieta miejsca na grafikę */
.usluga-image-placeholder {
    margin: var(--space-xl) 0;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(247, 144, 48, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.usluga-image-placeholder__inner {
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-2xl);
    text-align: center;
    background-image: repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 12px,
        rgba(247, 144, 48, 0.04) 12px,
        rgba(247, 144, 48, 0.04) 24px
    );
}
.usluga-image-placeholder--wide .usluga-image-placeholder__inner {
    aspect-ratio: 16 / 9;
}
.usluga-image-placeholder .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 56px !important;
    opacity: 0.6;
}
.usluga-image-placeholder__label {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-on-surface);
}
.usluga-image-placeholder__hint {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    line-height: 1.6;
    color: var(--color-on-surface-mute);
    letter-spacing: 0.05em;
    max-width: 360px;
}
.usluga-image-placeholder__caption {
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-on-surface-mute);
    font-size: var(--text-xs);
    font-style: italic;
    text-align: center;
    border-top: 1px dashed rgba(247, 144, 48, 0.3);
}

/* Typografia .prose w usługach — wzmocnienie żeby placeholdery i listy ładnie wyglądały */
.usluga-content__body.prose h2 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, var(--text-2xl));
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-on-surface);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(247, 144, 48, 0.2);
}
.usluga-content__body.prose h3 {
    font-size: var(--text-lg);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-primary-brand);
}
.usluga-content__body.prose p { margin-bottom: var(--space-md); }
.usluga-content__body.prose ul,
.usluga-content__body.prose ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}
.usluga-content__body.prose ul li,
.usluga-content__body.prose ol li { margin-bottom: var(--space-xs); line-height: 1.7; }
.usluga-content__body.prose strong { color: var(--color-on-surface); font-weight: 700; }
.usluga-content__body.prose em { color: var(--color-on-surface-mute); }

/* ── 19a3. SINGLE USLUGA (pojedyncza usługa) ─────────────── */
.usluga-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(247, 144, 48, 0.2), rgba(247, 144, 48, 0.05));
    border: 1px solid rgba(247, 144, 48, 0.4);
    border-radius: var(--radius-md);
    vertical-align: middle;
    margin-right: var(--space-sm);
}
.usluga-hero-icon .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 28px !important;
}

.usluga-content {
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 70% 50% at 30% 50%, rgba(247, 144, 48, 0.03) 0%, transparent 60%),
        linear-gradient(180deg, #2A2A2A 0%, #242424 100%);
}
.usluga-content__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: var(--space-2xl);
    align-items: start;
}
.usluga-content__body {
    max-width: 800px;
}
.usluga-content__sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--space-lg));
    align-self: start;
}

/* Sidebar navigation — wszystkie usługi (UX: szybkie skakanie między nimi) */
.usluga-nav {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.usluga-nav__header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(247, 144, 48, 0.05);
}
.usluga-nav__kicker {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: 2px;
}
.usluga-nav__heading {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-on-surface);
    margin: 0;
}

.usluga-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.usluga-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.usluga-nav__item:last-child { border-bottom: none; }

.usluga-nav__link {
    display: grid;
    grid-template-columns: 28px 24px 1fr auto;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--color-on-surface-var);
    text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
    border-left: 3px solid transparent;
    min-height: 56px;
}
.usluga-nav__link:hover {
    background: rgba(247, 144, 48, 0.06);
    color: var(--color-on-surface);
    border-left-color: rgba(247, 144, 48, 0.4);
}
.usluga-nav__link:hover .usluga-nav__arrow {
    opacity: 1;
    transform: translateX(0);
}
.usluga-nav__link:hover .usluga-nav__icon { color: var(--color-primary-brand); }

.usluga-nav__num {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary-brand);
    opacity: 0.7;
}
.usluga-nav__icon {
    color: var(--color-on-surface-mute);
    font-size: 20px !important;
    transition: color var(--t-fast);
}
.usluga-nav__title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.3;
}
.usluga-nav__arrow,
.usluga-nav__marker {
    color: var(--color-primary-brand);
    font-size: 18px !important;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--t-fast), transform var(--t-fast);
}

/* Active state — aktualna usługa */
.usluga-nav__item.is-active .usluga-nav__link {
    background: linear-gradient(90deg, rgba(247, 144, 48, 0.12), rgba(247, 144, 48, 0.02));
    color: var(--color-on-surface);
    border-left-color: var(--color-primary-brand);
    cursor: default;
}
.usluga-nav__item.is-active .usluga-nav__num {
    color: var(--color-primary-brand);
    opacity: 1;
}
.usluga-nav__item.is-active .usluga-nav__icon { color: var(--color-primary-brand); }
.usluga-nav__item.is-active .usluga-nav__title { font-weight: 700; }
.usluga-nav__item.is-active .usluga-nav__marker {
    opacity: 1;
    transform: translateX(0);
}

/* CTA mini pod listą */
.usluga-nav__cta {
    padding: var(--space-lg);
    background: rgba(247, 144, 48, 0.05);
    border-top: 1px solid rgba(247, 144, 48, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}
.usluga-nav__cta-lead {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-on-surface);
    margin: 0 0 var(--space-xs);
}
.usluga-nav__cta .btn { justify-content: center; }
.usluga-nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary-brand);
    text-decoration: none;
    padding: var(--space-xs);
    transition: color var(--t-fast);
}
.usluga-nav__phone:hover { color: var(--color-on-surface); }
.usluga-nav__phone .material-symbols-outlined { font-size: 16px !important; }

.usluga-related {
    background: #f5f5f5;
    color: #1a1a1a;
}
.usluga-related__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.usluga-related__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-xs);
}
.usluga-related__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, var(--text-2xl));
    font-weight: 700;
    color: #1a1a1a;
}
/* Service tiles na jasnym tle (usluga-related) */
.usluga-related .service-tile {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(26, 18, 11, 0.06);
}
.usluga-related .service-tile__title { color: #1a1a1a; }
.usluga-related .service-tile__desc { color: #555555; }
.usluga-related .service-tile:hover {
    background: #fafafa;
    border-color: var(--color-primary-brand);
    box-shadow: 0 16px 32px -8px rgba(26, 18, 11, 0.12), 0 0 24px rgba(247, 144, 48, 0.15);
}

/* ── 19a3d. STRONA KONTAKT — karty + dane firmy ──────────── */
.kontakt-cards {
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(180deg, #2A2A2A 0%, #232323 100%);
}
.kontakt-cards__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}
.kontakt-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-on-surface);
    transition: transform var(--t-base), border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.kontakt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 30%;
    background: linear-gradient(90deg, var(--color-primary-brand), transparent);
    transition: width var(--t-slow);
}
.kontakt-card:not(.kontakt-card--static):hover {
    transform: translateY(-4px);
    border-color: rgba(247, 144, 48, 0.4);
    background: rgba(247, 144, 48, 0.05);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5),
                0 0 24px rgba(247, 144, 48, 0.15);
}
.kontakt-card:not(.kontakt-card--static):hover::before { width: 100%; }
.kontakt-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(247, 144, 48, 0.18), rgba(247, 144, 48, 0.05));
    border: 1px solid rgba(247, 144, 48, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    transition: background var(--t-base), transform var(--t-base);
}
.kontakt-card__icon-wrap .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 28px !important;
}
.kontakt-card:hover .kontakt-card__icon-wrap {
    background: linear-gradient(135deg, rgba(247, 144, 48, 0.3), rgba(247, 144, 48, 0.08));
    transform: scale(1.05);
}
.kontakt-card__label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}
.kontakt-card__value {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-on-surface);
    word-break: break-word;
}
.kontakt-card__sub {
    font-size: var(--text-xs);
    color: var(--color-on-surface-mute);
    line-height: 1.5;
    margin-top: auto;
}

/* Strip z danymi firmy — subtelna linia na końcu /kontakt/ */
.kontakt-strip {
    background:
        linear-gradient(rgba(247, 144, 48, 0.02) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.02) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(180deg, #232323 0%, #1F1F1F 100%);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(247, 144, 48, 0.15);
}
.kontakt-strip__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
}
.kontakt-strip__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kontakt-strip__label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}
.kontakt-strip__value {
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
    font-weight: 500;
    line-height: 1.4;
}
.kontakt-strip__link {
    color: var(--color-on-surface);
    text-decoration: none;
    transition: color var(--t-fast);
}
.kontakt-strip__link:hover { color: var(--color-primary-brand); }

/* ── 19a3c. LIGHTBOX (modal pełnoekranowy dla zdjęć) ──────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
    padding: var(--space-md);
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.lightbox__inner {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img {
    max-width: 92vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    transition: opacity 200ms ease;
}
.lightbox.is-loading .lightbox__img { opacity: 0.3; }

.lightbox__btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    font-size: 0;
}
.lightbox__btn:hover {
    background: var(--color-primary-brand);
    border-color: var(--color-primary-brand);
    transform: scale(1.06);
    color: var(--color-on-primary);
}
.lightbox__btn .material-symbols-outlined { font-size: 24px !important; }

.lightbox__close { top: var(--space-md); right: var(--space-md); }
.lightbox__prev  { left: var(--space-md); top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: var(--space-md); top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

.lightbox__counter {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) {
    .lightbox__btn { width: 44px; height: 44px; }
    .lightbox__btn .material-symbols-outlined { font-size: 20px !important; }
}

/* Body lock gdy lightbox otwarty */
body.lightbox-open { overflow: hidden; }

/* ── 19a4. GALERIA — strona /galeria/ + single realizacja ──── */
.galeria-grid {
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(247, 144, 48, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #2A2A2A 0%, #232323 100%);
}

/* Filtry typu realizacji */
.galeria-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    justify-content: center;
}
.galeria-filter {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--color-on-surface-var);
    font-size: var(--text-xs);
    font-weight: 500;
    text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.galeria-filter:hover {
    background: rgba(247, 144, 48, 0.08);
    color: var(--color-primary-brand);
    border-color: rgba(247, 144, 48, 0.4);
}
.galeria-filter.is-active {
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    border-color: var(--color-primary-brand);
}
.galeria-filter__count {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    opacity: 0.7;
    padding: 1px 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}
.galeria-filter.is-active .galeria-filter__count { background: rgba(0, 0, 0, 0.15); opacity: 1; }

/* Grid zdjęć (CPT galeria — 1 zdjęcie = 1 wpis) */
.galeria-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}
.galeria-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-surface-low);
    cursor: zoom-in;
    display: block;
}
.galeria-photo__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.galeria-photo:hover .galeria-photo__img {
    transform: scale(1.06);
}
.galeria-photo__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity var(--t-base);
}
.galeria-photo:hover .galeria-photo__overlay { opacity: 1; }
.galeria-photo__zoom {
    width: 48px;
    height: 48px;
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Legacy — karty realizacji (jeśli gdzieś jeszcze użyte, fallback) */
.galeria-grid__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.galeria-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-on-surface);
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
}
.galeria-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 144, 48, 0.4);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5), 0 0 24px rgba(247, 144, 48, 0.15);
}
.galeria-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-surface-low);
}
.galeria-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}
.galeria-card:hover .galeria-card__img { transform: scale(1.06); }
.galeria-card__body {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.galeria-card__title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-on-surface);
    margin: 0;
}
.galeria-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-mute);
    margin: 0;
}
.galeria-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.galeria-card__meta .material-symbols-outlined {
    font-size: 14px !important;
    color: var(--color-primary-brand);
}

/* Pusta galeria */
.galeria-grid__empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--color-on-surface-var);
}
.galeria-grid__empty .material-symbols-outlined {
    font-size: 64px !important;
    color: var(--color-primary-brand);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}
.galeria-grid__empty h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-on-surface);
}
.galeria-grid__empty a { color: var(--color-primary-brand); text-decoration: underline; }

/* Paginacja */
.galeria-pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
}
.galeria-pagination a,
.galeria-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-on-surface-var);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast);
}
.galeria-pagination a:hover {
    background: rgba(247, 144, 48, 0.08);
    color: var(--color-primary-brand);
}
.galeria-pagination .current {
    background: var(--color-primary-brand);
    color: var(--color-on-primary);
    border-color: var(--color-primary-brand);
    font-weight: 700;
}

/* Single realizacja — meta lista pod H1 */
.realizacja-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-md) 0;
    list-style: none;
    padding: 0;
}
.realizacja-meta li {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 144, 48, 0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    color: var(--color-on-surface-var);
    letter-spacing: 0.05em;
}
.realizacja-meta .material-symbols-outlined {
    font-size: 14px !important;
    color: var(--color-primary-brand);
}

/* Treść + galeria realizacji */
.realizacja-content {
    background: linear-gradient(180deg, #2A2A2A 0%, #242424 100%);
}
.realizacja-content__container {
    max-width: 1100px;
}
.realizacja-content__body {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}
.realizacja-content__body.prose h2 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, var(--text-2xl));
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(247, 144, 48, 0.2);
}
.realizacja-content__body.prose h3 { color: var(--color-primary-brand); }

.realizacja-gallery {
    margin-top: var(--space-2xl);
}
.realizacja-gallery__heading {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--color-on-surface);
}
.realizacja-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}
.realizacja-gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-surface-low);
    position: relative;
    display: block;
}
.realizacja-gallery__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.realizacja-gallery__item:hover .realizacja-gallery__img { transform: scale(1.06); }
.realizacja-gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-on-surface);
    font-size: var(--text-2xs);
    opacity: 0;
    transition: opacity var(--t-base);
}
.realizacja-gallery__item:hover .realizacja-gallery__caption { opacity: 1; }

.realizacja-back {
    text-align: center;
    margin-top: var(--space-2xl);
}
.page-hero {
    position: relative;
    padding: var(--space-4xl) 0 var(--space-3xl);
    overflow: hidden;
    background:
        linear-gradient(rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.03) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 80% 70% at 50% 30%, rgba(247, 144, 48, 0.07) 0%, transparent 55%),
        linear-gradient(160deg, #383838 0%, #2A2A2A 50%, #1F1F1F 100%);
}

/* Wariant jasny — używany na single-usluga */
.page-hero--light {
    background:
        linear-gradient(rgba(247, 144, 48, 0.04) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(90deg, rgba(247, 144, 48, 0.04) 1px, transparent 1px) 0 0 / 50px 50px,
        radial-gradient(ellipse 80% 70% at 50% 30%, rgba(247, 144, 48, 0.08) 0%, transparent 55%),
        linear-gradient(160deg, #ffffff 0%, #f5f5f5 50%, #ececec 100%);
    color: #1a1a1a;
}
.page-hero--light .page-hero__title,
.page-hero--light .page-hero__content { color: #1a1a1a; }
.page-hero--light .page-hero__lead { color: #4a4a4a; }
.page-hero--light .breadcrumbs__link { color: #555; }
.page-hero--light .breadcrumbs__link:hover { color: var(--color-primary-brand); }
.page-hero--light .breadcrumbs__item--current { color: #1a1a1a; }
.page-hero--light .breadcrumbs__item:not(:last-child)::after { color: #999; }
.page-hero--light .page-hero__topo {
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.12) 1px, transparent 0);
}
.page-hero--light .page-hero__glow {
    background: radial-gradient(circle, rgba(247, 144, 48, 0.15) 0%, transparent 60%);
}
.page-hero--light .realizacja-meta li {
    background: rgba(247, 144, 48, 0.08);
    border-color: rgba(247, 144, 48, 0.3);
    color: #4a4a4a;
}
.page-hero--light .usluga-hero-icon {
    background: linear-gradient(135deg, rgba(247, 144, 48, 0.25), rgba(247, 144, 48, 0.08));
    border-color: rgba(247, 144, 48, 0.5);
}
/* Fade gradient dla wariantu light — definicja w sekcji split poniżej */
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__topo {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(247, 144, 48, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.5;
}
.page-hero__glow {
    position: absolute;
    top: 30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.10) 0%, transparent 60%);
    border-radius: var(--radius-full);
    filter: blur(80px);
}
.page-hero__container { position: relative; z-index: 2; }
.page-hero__content {
    max-width: 720px;
    text-align: left;
}
.page-hero__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin: var(--space-md) 0 var(--space-sm);
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw + 1rem, var(--text-4xl));
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--color-on-surface);
}
.page-hero__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-base);
    line-height: 1.6;
    max-width: 640px;
}

/* Wariant z grafiką po prawej + gradient fade w tło */
.page-hero--split {
    padding: var(--space-3xl) 0;
    min-height: 480px;
    display: flex;
    align-items: center;
}
/* Media pełna szerokość — kompozycję sterujemy przez object-position
   (obraz na prawą stronę, lewa część kadru obcięta).
   Brak widocznego styku z tłem sekcji bo obraz pokrywa całość. */
.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center; /* prawa część obrazu wyśrodkowana */
}
/* Gradient fade — bardzo płynny, 7 stopów dla braku banding */
.page-hero__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #2A2A2A 0%,
        rgba(42, 42, 42, 0.98) 18%,
        rgba(42, 42, 42, 0.92) 28%,
        rgba(42, 42, 42, 0.75) 40%,
        rgba(42, 42, 42, 0.50) 55%,
        rgba(42, 42, 42, 0.20) 75%,
        transparent 95%
    );
    pointer-events: none;
}
.page-hero--split .page-hero__content {
    max-width: 50%;
}

/* Wariant light — gradient fade z białego */
.page-hero--light.page-hero--split .page-hero__fade {
    background: linear-gradient(
        to right,
        #f5f5f5 0%,
        rgba(245, 245, 245, 0.98) 18%,
        rgba(245, 245, 245, 0.92) 28%,
        rgba(245, 245, 245, 0.75) 40%,
        rgba(245, 245, 245, 0.50) 55%,
        rgba(245, 245, 245, 0.20) 75%,
        transparent 95%
    );
}

/* ── 19c. ABOUT SECTIONS (3 sekcje O nas: media + content) ─ */
.about-section {
    position: relative;
}
.about-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
.about-section--reverse .about-section__container {
    direction: rtl;
}
.about-section--reverse .about-section__container > * {
    direction: ltr;
}
.about-section__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--color-surface-cont);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.about-section__img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* Bias ku górze - dla zdjec z osobami zawsze widac glowe */
    object-position: center 20%;
    transition: transform 700ms ease;
}
.about-section__media:hover .about-section__img {
    transform: scale(1.04);
}
.about-section__content {
    padding: var(--space-md) 0;
}
.about-section__kicker {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
    margin-bottom: var(--space-sm);
}
.about-section__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw + 0.5rem, var(--text-3xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-on-surface);
}
.about-section__lead {
    color: var(--color-on-surface-var);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* Lista bullet points z ikoną */
.about-section__bullets {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.about-section__bullets li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--color-on-surface-var);
}
.about-section__bullets .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 20px !important;
    flex-shrink: 0;
    margin-top: 2px;
    font-variation-settings: 'wght' 500;
}

/* Lista osób (zespół) */
.about-section__people {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}
.about-person {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--color-primary-brand);
    border-radius: var(--radius-md);
    transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.about-person:hover {
    background: rgba(247, 144, 48, 0.05);
    transform: translateX(4px);
}
.about-person__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(247, 144, 48, 0.15);
    border: 1px solid rgba(247, 144, 48, 0.3);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.about-person__avatar .material-symbols-outlined {
    color: var(--color-primary-brand);
    font-size: 24px !important;
}
.about-person__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-person__name {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-on-surface);
}
.about-person__role {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-brand);
}
.about-person__cert {
    color: var(--color-on-surface-mute);
    font-size: var(--text-xs);
    margin-top: 4px;
}

/* CTA na końcu sekcji */
.about-section__cta {
    margin-top: var(--space-lg);
}

/* Wariant jasny (Sekcja 2 — Zespół) */
.about-section--light {
    background: #f5f5f5;
    color: #1a1a1a;
}
.about-section--light .about-section__heading,
.about-section--light .about-person__name { color: #1a1a1a; }
.about-section--light .about-section__lead,
.about-section--light .about-person__cert,
.about-section--light .about-section__bullets li { color: #555555; }
.about-section--light .about-person {
    background: #ffffff;
    border-color: rgba(247, 144, 48, 0.2);
    box-shadow: 0 2px 12px rgba(26, 18, 11, 0.06);
}
.about-section--light .about-person:hover {
    background: #fafafa;
    box-shadow: 0 8px 24px rgba(247, 144, 48, 0.15);
}
.about-section--light .about-section__media {
    background: #e0e0e0;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px -8px rgba(26, 18, 11, 0.12);
}
.about-section--light .placeholder {
    background: #ffffff;
    color: #555555;
}
.about-section--light .placeholder__label { color: #1a1a1a; }

/* Placeholder 4:5 (portret) */
.placeholder--4x5 {
    aspect-ratio: 4 / 5;
    min-height: 0;
}

/* ── 20. ERROR 404 ───────────────────────────────────────── */
.error404 { text-align: center; padding: var(--space-4xl) 0; min-height: 60vh; display: flex; align-items: center; }
.error404__kicker { font-family: var(--font-mono); font-size: var(--text-2xs); letter-spacing: 0.3em; color: var(--color-primary-brand); margin-bottom: var(--space-md); }
.error404__title { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; margin-bottom: var(--space-md); }
.error404__lead { color: var(--color-on-surface-var); max-width: 500px; margin: 0 auto var(--space-xl); }
.error404__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ── 21. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .trust__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__cta-inner { grid-template-columns: 1fr; text-align: center; }
    .kontakt-cards__container { grid-template-columns: repeat(2, 1fr); }
    .kontakt-strip__container { gap: var(--space-md); }
    .footer__cta-actions { justify-content: center; }
}

@media (max-width: 900px) {
    .capabilities__container { grid-template-columns: 1fr; }
    .contact__container { grid-template-columns: 1fr; }
    .coverage__layout { grid-template-columns: 1fr; }
    .about-section__container { grid-template-columns: 1fr; gap: var(--space-xl); direction: ltr; }
    .about-section--reverse .about-section__container { direction: ltr; }
    /* Mobile: usun wymuszone aspect-ratio landscape - portretowe zdjecia osob potrzebuja przestrzeni pionowej */
    .about-section__media { aspect-ratio: 3 / 4; }
    .about-teaser__container { grid-template-columns: 1fr; gap: var(--space-xl); }
    .about-teaser__media { aspect-ratio: 3 / 4; }
    .about-teaser__img { object-position: center 20%; }
    .about-teaser__bullets { grid-template-columns: 1fr; }
    .services-tiles__grid { grid-template-columns: 1fr; }
    .services-cta__card { grid-template-columns: 1fr; text-align: center; }
    .usluga-content__container { grid-template-columns: 1fr; }
    .usluga-content__sidebar { position: static; }
    .galeria-grid__items { grid-template-columns: repeat(2, 1fr); }
    .galeria-photos { grid-template-columns: repeat(3, 1fr); }
    .realizacja-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .services-cta__lead { margin-left: auto; margin-right: auto; }
    .services-cta__actions { align-items: center; }

    /* Hero split na mobile — grafika za tekstem z mocniejszym overlay */
    .page-hero--split .page-hero__content { max-width: 100%; }
    .page-hero__media { width: 100%; opacity: 0.35; }
    .page-hero__fade {
        background: linear-gradient(180deg, rgba(42, 42, 42, 0.6) 0%, #2A2A2A 100%);
    }
    .hero__stats { grid-template-columns: repeat(2, 1fr); }

    /* ── MOBILE SIDE-DRAWER (z prawej, JASNE TŁO) ─────────── */
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 95%;
        max-width: 520px;
        background:
            radial-gradient(ellipse 70% 35% at 100% 0%, rgba(247, 144, 48, 0.12) 0%, transparent 60%),
            linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
        padding: calc(var(--header-h) + var(--space-md)) var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        pointer-events: none;
        transition: transform 360ms cubic-bezier(0.32, 0.72, 0, 1);
        border-left: 1px solid rgba(247, 144, 48, 0.3);
        box-shadow: -24px 0 80px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 150;
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }
    .header__nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    /* Mały label "Menu" nad listą */
    .header__nav::before {
        content: 'Menu';
        font-family: var(--font-mono);
        font-size: var(--text-2xs);
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--color-primary-brand);
        padding-bottom: var(--space-sm);
        border-bottom: 2px solid var(--color-primary-brand);
        align-self: flex-start;
        margin-bottom: var(--space-xs);
    }

    /* Menu list */
    .header__menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .header__menu li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .header__menu li:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }
    .header__menu a {
        display: flex !important;
        align-items: center;
        gap: var(--space-md);
        width: 100% !important;
        padding: var(--space-lg) 0 !important;
        font-family: var(--font-display);
        font-size: var(--text-xl);
        font-weight: 700;
        color: #1a1a1a !important;
        transition: color 180ms ease, padding-left 180ms ease, background 180ms ease;
        position: relative;
        box-sizing: border-box;
        text-decoration: none;
        line-height: 1.2;
    }
    .header__menu a::after {
        content: '→';
        font-family: var(--font-mono);
        font-size: 24px;
        font-weight: 700;
        opacity: 0.5;
        color: var(--color-primary-brand);
        transition: opacity 180ms ease, transform 180ms ease;
        position: static;
        width: auto; height: auto;
        background: none;
        flex-shrink: 0;
        margin-left: auto;    /* WYMUSZA strzałkę na PRAWĄ krawędź linku */
        padding-right: var(--space-xs);
    }
    .header__menu a:hover,
    .header__menu a:active,
    .header__menu .current-menu-item > a,
    .header__menu .current_page_item > a {
        color: var(--color-primary-brand) !important;
        padding-left: var(--space-md) !important;
        background: rgba(247, 144, 48, 0.06);
    }
    .header__menu a:hover::after,
    .header__menu a:active::after,
    .header__menu .current-menu-item > a::after,
    .header__menu .current_page_item > a::after {
        opacity: 1;
        transform: translateX(4px);
    }
    .header__menu a::before { display: none !important; }

    /* Phone CTA inside drawer (na dole, jako mega button) */
    .header__nav-cta {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        padding-top: var(--space-lg);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .header__nav-cta-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
        padding: var(--space-md);
        background: var(--color-primary-brand);
        color: var(--color-on-primary);
        border-radius: var(--radius-md);
        font-family: var(--font-display);
        font-weight: 700;
        font-size: var(--text-base);
        text-decoration: none;
        transition: transform var(--t-fast), box-shadow var(--t-fast);
        box-shadow: 0 6px 20px rgba(247, 144, 48, 0.25);
    }
    .header__nav-cta-phone:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(247, 144, 48, 0.4);
    }
    .header__nav-cta-phone .material-symbols-outlined { font-size: 20px !important; }

    /* Backdrop overlay */
    .header__backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 320ms ease;
        z-index: 149;
    }
    .header__backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .header__toggle { display: flex; }
    .header__phone-num { display: none; }
    .header__phone-cta { padding: var(--space-xs); }

    body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
    :root { --space-4xl: 4rem; }
    .container { padding: 0 var(--space-md); }
    .topbar__inner { padding: 0 var(--space-md); }
    .header__inner { padding: 0 var(--space-md); }
    .topbar__kicker { display: none; }

    /* Service cards — niższe (płaskie kafelki zamiast kwadratów) */
    .services__grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .service-card {
        aspect-ratio: auto;
        min-height: 0;
        padding: var(--space-lg);
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
        justify-content: flex-start;
    }
    .service-card__icon {
        font-size: 36px !important;
        align-self: center;
        margin: 0;
        flex-shrink: 0;
    }
    .service-card__title {
        margin-bottom: 4px;
        flex: 1;
    }
    .service-card__num {
        top: var(--space-sm);
        right: var(--space-sm);
        left: auto;
        font-size: var(--text-2xs);
    }
    .service-card__corner { width: 40px; height: 40px; }
    .service-card__link { display: none; } /* na mobile karta sama jest linkiem */

    /* Service tiles na /uslugi/ — też płaskie */
    .service-tile {
        padding: var(--space-lg);
    }
    .service-tile__icon-wrap { width: 48px; height: 48px; }
    .service-tile__icon { font-size: 26px !important; }

    /* Mapa kontaktowa — większa wysokość */
    .contact__location--map { min-height: 560px; height: 70vh; max-height: 720px; }
    .contact__location--map iframe { min-height: 560px; }
    .contact__map-card {
        bottom: var(--space-sm);
        left: var(--space-sm);
        right: var(--space-sm);
        padding: var(--space-sm) var(--space-md);
    }
    .contact__map-pin { width: 36px; height: 36px; }
    .contact__map-pin .material-symbols-outlined { font-size: 20px !important; }
    .contact__map-title { font-size: var(--text-sm); }

    /* Formularz — mniejszy padding wewnętrzny */
    .contact__form,
    .glass-card.contact__form { padding: var(--space-lg) var(--space-md); }
    .contact__heading { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
    .contact__lead { font-size: var(--text-xs); margin-bottom: var(--space-md); }
    .contact-form__row { grid-template-columns: 1fr; gap: var(--space-md); }
    .contact-form__input,
    .contact-form__textarea {
        padding: var(--space-md) var(--space-sm) var(--space-sm) calc(var(--space-sm) * 2 + 18px);
        font-size: var(--text-sm);
    }
    .contact-form__icon { left: var(--space-sm); font-size: 18px !important; }
    .contact-form__label { left: calc(var(--space-sm) * 2 + 18px); }
    .contact-form__textarea { min-height: 120px; }
    .contact-form__submit { padding: var(--space-md); }

    .gallery__grid,
    .trust__gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .galeria-grid__items { grid-template-columns: 1fr; }
    .galeria-photos { grid-template-columns: repeat(2, 1fr); }
    .realizacja-gallery__grid { grid-template-columns: 1fr; }
    .kontakt-cards__container { grid-template-columns: 1fr; }
    .kontakt-card { padding: var(--space-md); }
    .kontakt-strip__container { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
}

/* ── 22. ACCESSIBILITY ───────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--color-primary-brand);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    /* Wyłącz animacje glow drift — utrzymaj poświaty statyczne */
    .gallery::before, .gallery::after,
    .services::before, .coverage::after { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   OBSZAR DZIAŁANIA - CPT 'obszar' (single + archive)
   ══════════════════════════════════════════════════════════════════ */

/* ── Aliasy + brakujące warianty sekcji (dla single-obszar) ──── */
.obszar-hero,
.obszar-hero-section,
.obszar-stats,
.obszar-intro-section,
.obszar-uslugi-section,
.obszar-dlaczego-section,
.obszar-miasta-section,
.obszar-faq-section,
.obszar-cta-section,
.obszary-archive { --accent: #F79030; }

/* Globalny accent alias - dla wszystkich var(--accent) na stronie */
:root { --accent: #F79030; }

/* Section warianty - JASNA */
.section.section--light {
    background: #fafafc;
    color: #1a1a1a;
}
.section.section--light .section__kicker { color: #F79030; }
.section.section--light .section__heading { color: #1a1a1a; }
.section.section--light .section__lead    { color: #4a4a55; }

/* Section warianty - CIEMNA (wzmocnienie kontrastu) */
.section.section--dark {
    background: linear-gradient(180deg, #1f1f24 0%, #161616 100%);
    color: #f0f0f0;
}
.section.section--dark .section__kicker { color: #F79030; }
.section.section--dark .section__heading { color: #fff; }
.section.section--dark .section__lead    { color: rgba(255, 255, 255, 0.7); }

/* ── HERO: split (content + map iframe) ────────────────────────── */
.obszar-hero {
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 80% 0%, rgba(247, 144, 48, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(247, 144, 48, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, #1a1a1a 0%, #161616 50%, #0f0f0f 100%);
    color: #fff;
    padding: 100px 0 100px;
    overflow: hidden;
}
.obszar-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.obszar-hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(247, 144, 48, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 144, 48, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
    opacity: 0.9;
}
.obszar-hero__glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    animation: obszar-hero-glow-drift 8s ease-in-out infinite alternate;
}
@keyframes obszar-hero-glow-drift {
    from { transform: translate(0, 0) scale(1); opacity: 0.85; }
    to   { transform: translate(-40px, 40px) scale(1.05); opacity: 1; }
}
/* Topo curves SVG overlay */
.obszar-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' fill='none' stroke='%23F79030' stroke-width='1' opacity='0.08'><path d='M-50,650 Q300,520 600,580 T1250,540'/><path d='M-50,720 Q280,600 590,650 T1250,610'/><path d='M-50,580 Q320,440 620,510 T1250,480'/><path d='M-50,500 Q350,360 650,440 T1250,410'/></svg>");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.obszar-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.obszar-hero__content { display: flex; flex-direction: column; gap: 18px; }
.obszar-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0;
}
.obszar-hero__kicker .material-symbols-outlined { font-size: 18px; }
.obszar-hero__siedziba-pill {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-left: 8px;
}
.obszar-hero__h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    color: #fff;
}
.obszar-hero__lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin: 0;
}
.obszar-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

/* MAP card */
.obszar-hero__map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(247, 144, 48, 0.25);
    background: #0a0a0a;
}
.obszar-hero__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}
.obszar-hero__map-overlay {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.obszar-hero__map-overlay .material-symbols-outlined {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 2px;
}
.obszar-hero__map-overlay strong { font-size: 16px; font-weight: 700; }
.obszar-hero__map-overlay small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 960px) {
    .obszar-hero { padding: 70px 0 50px; }
    .obszar-hero__container { grid-template-columns: 1fr; gap: 36px; }
    .obszar-hero__map { aspect-ratio: 16 / 10; }
}

/* ── STATS STRIP - 4 KPI ─────────────────────────────────────── */
.obszar-stats {
    background: transparent;
    padding: 0;
    margin-top: -36px;
    position: relative;
    z-index: 5;
    color: #1a1a1a;
}
.obszar-stats .container { padding-top: 0; padding-bottom: 0; }
.obszar-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #ececf2;
}
.obszar-stat {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid #ececf2;
    background: linear-gradient(180deg, #fff 0%, #fafafc 100%);
}
.obszar-stat:last-child { border-right: none; }
.obszar-stat__num {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.obszar-stat__unit { font-size: 22px; color: #888; }
.obszar-stat__label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: #4a4a55;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
@media (max-width: 720px) {
    .obszar-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .obszar-stat { border-right: 1px solid #ececf2; border-bottom: 1px solid #ececf2; }
    .obszar-stat:nth-child(even) { border-right: none; }
    .obszar-stat:nth-last-child(-n+2) { border-bottom: none; }
    .obszar-stat__num { font-size: 30px; }
}

/* ── INTRO SPLIT - text + side card ──────────────────────────── */
.obszar-intro-split {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-top: 24px;
}
.obszar-intro-split__main .section__heading { margin: 6px 0 24px; }
.obszar-intro-split__content {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a35;
}
.obszar-intro-split__content p { margin: 0 0 18px; }
.obszar-intro-split__content p:last-child { margin-bottom: 0; }

.obszar-side-card {
    background: linear-gradient(180deg, #1f1f24 0%, #161616 100%);
    border: 1px solid rgba(247, 144, 48, 0.20);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 100px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.obszar-side-card__kicker {
    font-size: 11px;
    font-weight: 700;
    color: #F79030 !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 6px;
}

.obszar-person {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    text-decoration: none;
    color: #fff !important;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.obszar-person:hover {
    background: rgba(247, 144, 48, 0.10);
    border-color: rgba(247, 144, 48, 0.45);
    transform: translateY(-2px);
}
.obszar-person__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #F79030 0%, #d97a1e 100%);
    color: #fff !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(247, 144, 48, 0.30);
}
.obszar-person__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.obszar-person__name {
    font-size: 15.5px;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.obszar-person__role {
    font-size: 10.5px;
    font-weight: 700;
    color: #F79030 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}
.obszar-person__cert {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.70) !important;
    margin-top: 4px;
    line-height: 1.45;
}
.obszar-person__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
    color: #F79030 !important;
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.obszar-person__phone .material-symbols-outlined {
    font-size: 16px;
    color: #F79030 !important;
}

@media (max-width: 960px) {
    .obszar-intro-split { grid-template-columns: 1fr; gap: 36px; }
    .obszar-side-card { position: relative; top: 0; }
}

/* ── USŁUGI W OBSZARZE - grid cards (dark) ───────────────────── */
.obszar-uslugi__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 44px;
}
.obszar-usluga-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 24px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.obszar-usluga-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
a.obszar-usluga-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 144, 48, 0.4);
    background: rgba(247, 144, 48, 0.06);
}
a.obszar-usluga-card:hover::before { opacity: 1; }
.obszar-usluga-card__icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 4px;
}
.obszar-usluga-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.obszar-usluga-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    flex-grow: 1;
}
.obszar-usluga-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.obszar-usluga-card__link .material-symbols-outlined { font-size: 16px; }

/* ── DLACZEGO MY (E-E-A-T) - 3 powody (light) ────────────────── */
.obszar-dlaczego__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 44px;
}
.obszar-powod {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 24px;
    border-top: 3px solid #F79030;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
}
.obszar-powod__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #F79030;
    line-height: 1;
    letter-spacing: -0.02em;
}
.obszar-powod__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin: 4px 0 0;
    color: #1a1a1a;
}
.obszar-powod__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #4a4a55;
    margin: 0;
}

/* ── MIEJSCOWOŚCI - chips (dark, local SEO) ──────────────────── */
.obszar-miasta__chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}
.obszar-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.obszar-chip:hover {
    background: rgba(247, 144, 48, 0.08);
    border-color: rgba(247, 144, 48, 0.35);
    transform: translateY(-2px);
}
.obszar-chip__icon {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    background: rgba(247, 144, 48, 0.12);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.obszar-chip__main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.obszar-chip__main strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    line-height: 1.3;
}
.obszar-chip__main small {
    font-size: 10.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5) !important;
    letter-spacing: 0.1em;
    font-family: 'JetBrains Mono', monospace;
}

/* ── FAQ accordion (light) ───────────────────────────────────── */
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__header--center .section__heading { margin-left: auto; margin-right: auto; }
.obszar-faq__list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.obszar-faq-item {
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    color: #1a1a1a;
}
.obszar-faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 6px 22px rgba(247, 144, 48, 0.10);
    background: linear-gradient(135deg, #fffaf3 0%, #fff 100%);
}
.obszar-faq-item__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.2s;
}
.obszar-faq-item__q::-webkit-details-marker { display: none; }
.obszar-faq-item__q:hover { background: #fafafc; }
.obszar-faq-item__icon {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.obszar-faq-item[open] .obszar-faq-item__icon { transform: rotate(180deg); }
.obszar-faq-item__a {
    padding: 0 26px 22px;
    color: #4a4a55;
    font-size: 15px;
    line-height: 1.75;
}
.obszar-faq-item__a p { margin: 0; }

/* ── CTA STRIP - kontakt z geodetą ───────────────────────────── */
.section--cta {
    background: linear-gradient(135deg, #161616 0%, #2a2a30 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(247, 144, 48, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 144, 48, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.section--cta::after {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 144, 48, 0.18) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.obszar-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.obszar-cta__kicker {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 12px;
}
.obszar-cta__heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
}
.obszar-cta__lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.obszar-cta__contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 0 0 22px;
    text-align: left;
}
.obszar-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.obszar-cta-card:hover {
    background: rgba(247, 144, 48, 0.10);
    border-color: rgba(247, 144, 48, 0.4);
    transform: translateY(-2px);
}
.obszar-cta-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #d97a1e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.obszar-cta-card__avatar--alt { background: linear-gradient(135deg, #2a2a30 0%, #4a4a55 100%); color: #fff; }
.obszar-cta-card__info { flex-grow: 1; display: flex; flex-direction: column; gap: 1px; }
.obszar-cta-card__info small {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.12em;
}
.obszar-cta-card__info strong { font-size: 15px; font-weight: 600; }
.obszar-cta-card__info span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}
.obszar-cta-card__icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}
.obszar-cta__or {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 8px 0 18px;
}
.obszar-cta__form-btn { margin: 0 auto; }

/* Ghost button variant dla dark sekcji */
.btn--ghost-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}
.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light {
    background: transparent;
    border: 2px solid var(--accent);
    color: #fff;
}
.btn--outline-light:hover {
    background: var(--accent);
    color: #fff;
}

/* ── ARCHIVE - grid 8 powiatów ───────────────────────────────── */
.obszary-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 48px;
}
.obszar-card {
    position: relative;
    background: #fff;
    border: 2px solid #e8e8ed;
    padding: 32px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.obszar-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(247, 144, 48, 0.18);
}
.obszar-card--siedziba {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
}
.obszar-card__badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.obszar-card__pin {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 4px;
}
.obszar-card__city {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
.obszar-card__powiat {
    font-size: 13px;
    color: #6a6a75;
    margin: 0;
    text-transform: lowercase;
}
.obszar-card__count {
    font-size: 12px;
    color: #8a8a95;
    font-family: 'JetBrains Mono', monospace;
    margin: 8px 0 0;
}
.obszar-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e8e8ed;
}
.obszar-card__cta .material-symbols-outlined { font-size: 16px; }

@media (max-width: 720px) {
    .obszar-faq-item__q { padding: 16px 18px; font-size: 14.5px; }
    .obszar-faq-item__a { padding: 0 18px 18px; font-size: 14px; }
    .obszar-card { padding: 24px 20px; }
    .obszar-cta-card { padding: 14px 16px; }
    .obszar-cta-card__avatar { width: 44px; height: 44px; font-size: 14px; }
}

/* ══════════════════════════════════════════════════════════════════
   BLOKADA OPISOW USLUG - prosty komunikat "Opisy pojawia sie wkrotce"
   ══════════════════════════════════════════════════════════════════ */
.usluga-locked-msg {
    padding: 24px 0;
    font-size: 16px;
    line-height: 1.7;
    color: inherit;
}
.usluga-locked-msg p { margin: 0 0 10px; }
.usluga-locked-msg p:last-child { margin-bottom: 0; }
.usluga-locked-msg a {
    color: var(--color-primary-brand, #F79030);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(247, 144, 48, 0.35);
    transition: border-color 0.2s;
}
.usluga-locked-msg a:hover { border-bottom-color: var(--color-primary-brand, #F79030); }
