/* Statyczne podstrony miejskie (SEO landing pages). Marka spójna z aplikacją React. */
:root {
    --bg: hsl(40 33% 98%);
    --fg: hsl(222 25% 13%);
    --primary: hsl(222 45% 22%);
    --primary-fg: hsl(40 33% 98%);
    --secondary: hsl(42 30% 93%);
    --muted-fg: hsl(220 12% 45%);
    --brand: hsl(38 92% 50%);
    --brand-fg: hsl(28 65% 13%);
    --border: hsl(40 22% 87%);
    --card: hsl(0 0% 100%);
    --radius: 1rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Oswald', sans-serif; line-height: 1.15; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-fg); }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 30;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand-lockup { display: flex; align-items: center; gap: .5rem; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.3rem; }
.brand-lockup img { width: 28px; height: 28px; object-fit: contain; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; border-radius: .6rem; padding: .85rem 1.6rem;
    text-decoration: none; cursor: pointer; border: none; font-size: 1rem;
    transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-brand { background: var(--brand); color: var(--brand-fg); box-shadow: 0 8px 20px -8px rgba(0,0,0,.4); }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--border); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* Hero */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; color: #fff; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, hsla(222,45%,15%,.95), hsla(222,45%,22%,.7) 55%, hsla(222,45%,22%,.25)); }
.hero .wrap { position: relative; padding-top: 4rem; padding-bottom: 4rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; margin: .6rem 0 1.2rem; }
.hero p.lead { font-size: 1.15rem; max-width: 560px; color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.hero .note { margin-top: 1rem; font-size: .85rem; color: rgba(255,255,255,.55); }

/* Cards / grid */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: .6rem; }
.section-head p { color: var(--muted-fg); font-size: 1.05rem; }
.muted { color: var(--muted-fg); }
.bg-secondary { background: var(--secondary); }

.step-num { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--primary); color: var(--primary-fg); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step { display: flex; gap: 1rem; }
.badge { display: inline-block; margin-top: .75rem; font-size: .75rem; font-weight: 500; color: var(--primary); background: hsla(222,45%,22%,.08); border: 1px solid hsla(222,45%,22%,.15); padding: .25rem .75rem; border-radius: 999px; }

/* Trust (dark) */
.trust { background: var(--primary); color: var(--primary-fg); }
.trust .section-head p { color: rgba(255,255,255,.7); }
.trust .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--primary-fg); }
.trust .card p { color: rgba(255,255,255,.7); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.gallery img { width: 100%; height: 230px; object-fit: cover; border-radius: .75rem; }

/* Reviews */
.stars { color: #f59e0b; letter-spacing: 2px; }
.review-meta { border-top: 1px solid var(--border); margin-top: 1rem; padding-top: 1rem; font-size: .85rem; }
.review-meta strong { display: block; }

/* FAQ */
.faq-item { border: 1px solid var(--border); background: hsla(42,30%,93%,.45); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: .5rem; }

/* Phone strip */
.phone-strip { background: var(--secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.phone-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 3rem 1.5rem; }
.phone-btn { background: var(--primary); color: var(--primary-fg); border-radius: .75rem; padding: 1rem 2rem; font-size: 1.2rem; font-weight: 700; text-decoration: none; }

/* CTA */
.cta { position: relative; color: #fff; text-align: left; padding: 6rem 0; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(10,15,30,.72); }
.cta .wrap { position: relative; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }

/* Footer */
.site-footer { background: #0a0a0b; color: #a1a1aa; padding: 3rem 0; font-size: .9rem; }
.site-footer a { color: #a1a1aa; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; }
.site-footer .city-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }

/* Cookie banner (statyczne strony) */
.cookie-banner {
    position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 50;
    max-width: 380px; margin-left: auto;
    background: rgba(24,24,27,.96); color: #d4d4d8; border: 1px solid #3f3f46;
    border-radius: .75rem; padding: 1rem; box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
    font-size: .8rem;
}
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner .row { display: flex; gap: .5rem; margin-top: .75rem; }
.cookie-banner button { flex: 1; border: none; border-radius: .5rem; padding: .5rem; font-size: .8rem; font-weight: 600; cursor: pointer; }
.cookie-banner .accept { background: #fff; color: #18181b; }
.cookie-banner .reject { background: transparent; color: #d4d4d8; border: 1px solid #52525b; }

@media (max-width: 860px) {
    .grid-3, .grid-2, .gallery { grid-template-columns: 1fr; }
    .gallery img { height: 200px; }
    .section { padding: 3.5rem 0; }
}
