/* ==========================================================================
   PSYCHOLOGIA ANNA BERKA — arkusz stylów główny
   Paleta: gołębi błękit / grafit / szałwia / przybrudzona biel
   Typografia: Cormorant Garamond (nagłówki, kursywa, cytaty) + Jost (treść)
   ========================================================================== */

:root {
    /* --- Kolory --- */
    --color-bg: #FAF8F4;              /* kremowa/kostna biel - tło dominujące, ocieplone względem v5.0 */
    --color-bg-alt: #F2EFE8;          /* ciepłe, mleczne tło naprzemiennych sekcji */
    --color-white: #FFFFFF;
    --color-dove-blue: #A9BFD1;       /* gołębi błękit */
    --color-dove-blue-soft: #D7E3EA;  /* jasny wariant błękitu, tła kart */
    --color-dove-blue-deep: #7C97AC;  /* ciemniejszy błękit, akcent/hover */
    --color-secondary: #5C7A93;       /* drugorzędny akcent - głębszy błękit (struktura, nawigacja) */
    --color-secondary-soft: #D7E3EA;  /* jasny wariant drugorzędny - ten sam odcień co "Zasady przekładania wizyt" */
    --color-warm: #C98A4B;            /* ciepły akcent - nadzieja/wsparcie, używany oszczędnie */
    --color-warm-soft: #F4E6D3;       /* jasny ciepły wariant, tła */
    --color-warm-deep: #A66B2E;       /* głębszy ciepły wariant, tekst/hover */
    --color-graphite: #3E4550;        /* grafitowy - tekst główny, nagłówki */
    --color-graphite-soft: #6B7280;   /* tekst drugorzędny */
    --color-line: #E2DDD2;            /* delikatne linie/obwódki, ciepły neutralny odcień */

    /* --- Typografia --- */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Segoe UI', sans-serif;

    /* --- Rytm / odstępy --- */
    --radius-s: 6px;
    --radius-m: 14px;
    --radius-l: 28px;
    --shadow-soft: 0 10px 30px -12px rgba(62, 69, 80, 0.16);
    --container-w: 1140px;
}

body {
    background: linear-gradient(180deg, #FDFCFA 0%, #FAF8F4 55%, #F6F2EA 100%);
    background-attachment: fixed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--color-graphite);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--color-dove-blue-deep); text-decoration: none; }
a:hover { color: var(--color-graphite); }

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-graphite);
    line-height: 1.25;
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--color-secondary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6em;
}

.quote, blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--color-graphite);
    border-left: 3px solid var(--color-warm);
    padding-left: 1.2em;
    margin: 2em 0;
}

p {
    margin: 0 0 1.2em;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}
/* Krótkie, jednowierszowe teksty UI nie powinny być justowane (nie ma efektu, a bywa nierówno) */
.lead, .hero__photo-badge, .notice-pill, .card h3, .btn, .article-meta, figcaption, .quote {
    text-align: left;
}
.section-head p { text-align: center; }

/* Focus widoczny (dostępność) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--color-dove-blue-deep);
    outline-offset: 2px;
}

/* Respektuj preferencję reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============================= HEADER / NAV ============================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 2px 16px rgba(62, 69, 80, 0.07);
}
@media (min-width: 861px) {
    .site-header { backdrop-filter: blur(8px); }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 24px;
    max-width: var(--container-w);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-graphite);
}
.brand img { height: 46px; width: auto; }
.brand__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--color-graphite);
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 6px 0;
}
.main-nav a::after {
    content: '';
    position: absolute; left: 0; right: 100%; bottom: 0;
    height: 2px; background: var(--color-secondary);
    transition: right .45s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--color-dove-blue-deep); }
.main-nav .main-nav__cta {
    background: var(--color-graphite);
    color: var(--color-white) !important;
    padding: 8px 22px;
    line-height: 1.3;
    display: inline-block;
    border-radius: 999px;
    transition: background .35s ease, color .35s ease;
}
.main-nav a.main-nav__cta::after { display: none; }
.main-nav .main-nav__cta:hover { background: var(--color-dove-blue); color: var(--color-graphite) !important; }
@media (max-width: 860px) {
    .main-nav__cta { display: inline-block; margin-top: 10px; }
}

.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 42px; height: 42px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-graphite); display: block; }

@media (max-width: 860px) {
    .main-nav {
        position: fixed; top: 74px; right: 0; bottom: 0; left: 0;
        background: var(--color-bg);
        transform: translateX(100%);
        transition: transform .3s ease;
        padding: 24px;
        overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 14px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--color-line); }
    .nav-toggle { display: flex; }
}

/* ============================= HERO ============================= */

.hero {
    padding: 48px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero__grid--photo-left { grid-template-columns: 0.8fr 1.2fr; }
.hero__grid--text-left { grid-template-columns: 1.2fr 0.8fr; }
.hero__eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 3.2em; }
.hero__logo-symbol { height: 88px; width: auto; flex-shrink: 0; }
.hero__eyebrow { color: var(--color-secondary); font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0; }
.hero h1 { margin-top: 0.2em; }
.hero h1 em {
    font-style: italic;
    color: var(--color-dove-blue-deep);
}
.hero p.lead { font-size: 1.15rem; color: var(--color-graphite-soft); max-width: 46ch; }

.hero__photo-wrap {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/5;
    background: var(--color-dove-blue-soft);
}
.hero__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-wrap.photo--compact { max-width: 300px; margin-left: auto; }
.hero__photo-wrap.photo--compact.photo--align-left { margin-left: 0; margin-right: auto; }
.hero__photo-wrap.photo--compact.photo--hero-large { max-width: 416px; }
.hero__photo-wrap.photo--compact.photo--enlarged-20 { max-width: 360px; }
.photo-caption {
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 14px 0 0;
}
.hero__photo-badge {
    position: absolute; bottom: 18px; left: 18px;
    background: var(--color-white);
    border-radius: var(--radius-m);
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    border-left: 3px solid var(--color-warm);
    font-size: 0.85rem;
    max-width: 220px;
}

@media (max-width: 860px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__photo-wrap { max-width: 340px; margin: 0 auto; }
    .hero__photo-wrap.photo--compact { max-width: 240px; margin: 0 auto; }
    .hero__photo-wrap.photo--compact.photo--align-left,
    .hero__photo-wrap.photo--compact.photo--hero-large,
    .hero__photo-wrap.photo--compact.photo--enlarged-20 { max-width: 240px; margin: 0 auto; }
}

/* ============================= BUTTONS ============================= */

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s ease;
}
.btn-primary { background: var(--color-graphite); color: var(--color-white); border-color: transparent; }
.btn-outline { background: transparent; color: var(--color-graphite); border-color: var(--color-graphite); }
.btn-secondary { background: var(--color-secondary); color: var(--color-white); border-color: transparent; }
.btn-primary:hover, .btn-outline:hover, .btn-secondary:hover {
    background: var(--color-dove-blue);
    color: var(--color-graphite);
    border-color: var(--color-dove-blue);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.8em; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================= SECTIONS ============================= */

section { padding: 84px 0; }
.section-tight-top { padding-top: 32px; }
.section-alt { background: var(--color-bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--color-graphite-soft); }
.notice-pill {
    display: inline-block;
    background: var(--color-secondary-soft);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 8px 22px;
    border-radius: 999px;
    margin-top: 12px;
}

/* ============================= CARDS / GRID ============================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.card {
    background: var(--color-white);
    border-radius: var(--radius-m);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-line);
}
.card h3 { color: var(--color-dove-blue-deep); }
.card ul { margin: 0; padding-left: 1.1em; color: var(--color-graphite-soft); }
.card li { margin-bottom: 0.5em; }

/* Obszary pomocy: kafelki grup */
.help-group {
    background: var(--color-secondary-soft);
    border-radius: var(--radius-m);
    padding: 28px 30px;
    transition: background-color .5s ease, transform .5s ease;
}
.help-group:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}
.help-group__icon-badge {
    width: 92px; height: 92px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px -8px rgba(62,69,80,0.22);
    margin-bottom: 16px;
}
.help-group__icon { width: 60px; height: 60px; object-fit: contain; }
.porada-card__icon img { width: 56px; height: 56px; object-fit: contain; }
.porada-card { display: flex; flex-direction: column; align-items: center; }
.help-group h3 { color: var(--color-graphite); margin-bottom: 0.7em; transition: color .5s ease; }
.help-group:hover h3 { color: #fff; }
.help-group ul { list-style: none; margin: 0; padding: 0; }
.help-group li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(62,69,80,0.15);
    color: var(--color-graphite);
    transition: color .5s ease, border-color .5s ease;
}
.help-group:hover li { color: #fff; border-bottom-color: rgba(255,255,255,0.3); }
.help-group li:last-child { border-bottom: none; }

/* ============================= WSPÓŁPRACA - kroki ============================= */

.steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.step {
    display: grid; grid-template-columns: 64px 1fr; gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-line);
}
.step:last-child { border-bottom: none; }
.step__num {
    font-family: var(--font-display); font-style: italic; font-size: 2rem;
    color: var(--color-dove-blue-deep);
}
.step h3 { margin-bottom: 0.3em; }
.step p { color: var(--color-graphite-soft); margin: 0; }

.note-box {
    background: var(--color-dove-blue-soft);
    border-radius: var(--radius-m);
    padding: 28px 30px;
    margin-top: 36px;
}
.note-box h4 {
    margin: 0 0 1.1em;
    font-size: 1.55rem;
    font-weight: 600;
}

/* ============================= CENNIK ============================= */

.payment-box {
    max-width: 720px;
    margin: 40px auto 0;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-m);
    padding: 28px 30px;
}
.payment-box h4 { margin: 0 0 0.8em; font-size: 1.3rem; font-weight: 600; }
.bank-account { margin-top: 1.2em; }
.bank-account__number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-graphite);
}

.pricing-list { display: flex; flex-direction: column; gap: 16px; }
.pricing-item {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-m);
    padding: 26px 30px;
}
.pricing-item__name { font-family: var(--font-display); font-size: 1.2rem; }
.pricing-item__desc { color: var(--color-graphite-soft); font-size: 0.92rem; margin-top: 6px; }
.pricing-item__price {
    font-family: var(--font-display); font-style: italic; font-size: 1.5rem;
    color: var(--color-dove-blue-deep); white-space: nowrap;
}

/* ============================= KONTAKT ============================= */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info dt { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-secondary); margin-top: 1.4em; }
.contact-info dd { margin: 0.2em 0 0; }
.contact-info dd p { margin: 0 0 0.6em; }
.contact-info dd p:last-child { margin-bottom: 0; }

.zl-section {
    background: linear-gradient(135deg, var(--color-dove-blue-soft) 0%, var(--color-bg-alt) 100%);
    border-radius: var(--radius-l);
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
    transition: background .6s ease;
}
.zl-section:hover {
    background: linear-gradient(135deg, var(--color-dove-blue) 0%, var(--color-dove-blue-soft) 100%);
}
.zl-section__icon {
    width: 88px; height: 88px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}
.zl-section__icon svg { width: 44px; height: 44px; color: var(--color-dove-blue-deep); }
.zl-section__body { min-width: 0; }
.zl-section__brand { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.zl-section__brand img { height: 42px; width: auto; }
.zl-section .stars { color: #D9A441; letter-spacing: 3px; font-size: 1.6rem; }
.zl-section__rating { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.9rem; color: var(--color-warm-deep); display: inline-block; margin-left: 8px; }
.zl-section h3 { margin: 4px 0 6px; }
.zl-section p { margin: 0; color: var(--color-graphite-soft); text-align: left; }
.zl-section__cta { flex-shrink: 0; }
.zl-section__cta .btn { white-space: nowrap; }

@media (max-width: 780px) {
    .zl-section { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
    .zl-section__icon { margin: 0 auto; }
    .zl-section__brand { justify-content: center; }
    .zl-section__body, .zl-section__cta { min-width: 0; width: 100%; }
    .zl-section p { text-align: center; }
    .zl-section__cta .btn { white-space: normal; width: 100%; justify-content: center; text-align: center; }
}

.articles-teaser-empty {
    background: var(--color-white);
    border: 1px dashed var(--color-line);
    border-radius: var(--radius-m);
    padding: 40px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}
.articles-teaser-empty p { color: var(--color-graphite-soft); }

.zl-widget-compact {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-m);
    padding: 26px 28px;
    margin-top: 28px;
}
.zl-widget-compact img { height: 30px; margin-bottom: 12px; }
.zl-widget-compact .stars { color: #D9A441; letter-spacing: 3px; font-size: 1.3rem; }
.zl-widget-compact__rating { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 2rem; color: var(--color-warm-deep); margin: 4px 0; }

#map { width: 100%; height: 420px; border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-soft); }
.zl-widget-embed { margin-top: 28px; }
.zl-widget-embed--section { margin-top: 0; text-align: center; }
.zl-widget-embed iframe { max-width: 100%; border-radius: var(--radius-m); }

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ============================= BLOG ============================= */

.blog-toolbar {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
    margin-bottom: 36px;
}
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-filters a {
    padding: 7px 16px; border-radius: 999px; border: 1px solid var(--color-line);
    color: var(--color-graphite); font-size: 0.9rem;
}
.blog-filters a.active, .blog-filters a:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.article-card {
    background: var(--color-white); border-radius: 26px; overflow: hidden;
    border: 1px solid var(--color-line); box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column;
    transition: transform .45s ease, box-shadow .45s ease;
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px -14px rgba(62,69,80,0.28); }
.article-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__cat { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-dove-blue-deep); }
.article-card__date { font-size: 0.82rem; color: var(--color-graphite-soft); }
.article-card h3 { margin: 0; font-size: 1.25rem; }
.article-card p.subtitle { color: var(--color-graphite-soft); font-size: 0.95rem; margin: 0; }
.article-card .btn { align-self: flex-start; margin-top: auto; padding: 9px 20px; font-size: 0.88rem; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--color-line); color: var(--color-graphite);
}
.pagination .current { background: var(--color-graphite); color: #fff; border-color: var(--color-graphite); }

/* Pojedynczy artykuł */
.article-header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.article-meta { color: var(--color-graphite-soft); font-size: 0.92rem; margin-bottom: 1em; }
.article-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 1.2em; }
.article-tags a { font-size: 0.8rem; background: var(--color-secondary-soft); padding: 5px 13px; border-radius: 999px; color: var(--color-graphite); }

.article-body { max-width: 720px; margin: 0 auto; font-size: 1.08rem; }
.article-image { margin: 2.2em 0; }
.article-image img { border-radius: var(--radius-m); width: 100%; }
.article-image--thumb { max-width: 420px; margin-left: auto; margin-right: auto; position: relative; cursor: zoom-in; }
.article-image__zoom {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(62,69,80,0.75); color: #fff; border: none; border-radius: 50%;
    width: 34px; height: 34px; cursor: pointer; font-size: 1rem;
}

.lightbox {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(30,33,38,0.92);
    display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-s); }
.lightbox__close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 2rem; background: none; border: none; cursor: pointer; }

/* ============================= FOOTER ============================= */

.site-footer { background: var(--color-graphite); color: #E8E6E1; padding: 56px 0 28px; margin-top: 60px; }
.site-footer a { color: #E8E6E1; }
.site-footer a:hover { color: var(--color-dove-blue-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.94rem; }
.footer-brand__row { display: flex; align-items: center; gap: 20px; }
.footer-brand__badge {
    flex-shrink: 0;
    width: 62px; height: 62px;
    background: var(--color-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.footer-brand__badge img { height: 40px; width: auto; }
.footer-brand p { margin: 0; }
@media (max-width: 500px) {
    .footer-brand__row { align-items: flex-start; }
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; font-size: 0.82rem; color: #B8B6B1; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.cursor-toggle-link {
    background: none; border: none; padding: 0; margin: 0;
    color: #B8B6B1; font-size: 0.82rem; font-family: var(--font-body);
    cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.cursor-toggle-link:hover { color: var(--color-dove-blue-soft); }

/* ============================= BANER COOKIE / PRYWATNOŚĆ ============================= */

.cookie-banner {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    max-width: 620px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-soft);
    padding: 18px 22px;
    z-index: 5000;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 220px;
    font-size: 0.86rem;
    color: var(--color-graphite-soft);
    text-align: left;
}
.cookie-banner .btn { white-space: nowrap; }

@media (max-width: 560px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
}

@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================= CURSOR (parasolka podążająca za kursorem) ============================= */

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    color: var(--color-dove-blue-deep);
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(62, 69, 80, 0.22));
    transition: width .3s ease, height .3s ease, color .3s ease, opacity .3s ease;
}
.cursor-dot svg { width: 100%; height: 100%; display: block; }
.cursor-dot.is-active {
    width: 16px; height: 16px;
    color: var(--color-secondary);
    opacity: 1;
}

@media (hover: none), (max-width: 860px) {
    .cursor-dot { display: none; }
}

/* ============================= UTIL ============================= */

.text-center { text-align: center; }
.text-center p { text-align: center; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--color-line); margin: 60px 0; border: none; }
.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--color-graphite); color: #fff;
    padding: 12px 20px; z-index: 2000;
}
.skip-link:focus { left: 12px; top: 12px; }
