:root {
  --dark: #262629;
  --dark-muted: #b3b3b8;
  --dark-border: rgba(255, 255, 255, 0.12);
  --bg: #fdfdfb;
  --fg: #2c2d31;
  --muted-fg: #6f7178;
  --secondary: #f2f3f5;
  --border: #e3e4e7;
  --accent: #c0392f;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--sans); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 300; margin: 0; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-family: var(--display); font-size: 2.25rem; line-height: 1.1; font-weight: 300; letter-spacing: 0.02em; }
.section-title::after { content: ""; display: block; width: 56px; height: 2px; margin-top: 20px; background: var(--accent); }
.lead { max-width: 60ch; color: var(--muted-fg); margin-top: 32px; }
.eyebrow { margin-top: 32px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-fg); }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--dark); color: #fafafa; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-family: var(--display); font-size: 1.75rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; }
.nav { display: flex; gap: 36px; }
.nav a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dark-muted); text-decoration: none; transition: color 0.2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }

/* hero */
.hero { position: relative; }
.hero img { height: 68vh; min-height: 420px; width: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(38, 38, 41, 0.45); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fafafa; padding: 0 20px; }
.hero-content h1 { font-size: clamp(2.75rem, 8vw, 4.5rem); letter-spacing: 0.12em; text-transform: uppercase; }
.hero-content p { margin-top: 20px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.35em; color: var(--accent); }

/* lists */
.list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px 48px; }
@media (min-width: 700px) { .list.two-col { grid-template-columns: 1fr 1fr; } }
.list li { display: flex; gap: 12px; }
.list li::before { content: ""; flex: none; width: 16px; height: 2px; margin-top: 13px; background: var(--accent); }

/* split sections */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse .split-img { order: 2; } }
.split-img img { width: 100%; object-fit: cover; box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.45); }
.alt { background: var(--secondary); }

.quote { margin-top: 24px; border-left: 2px solid var(--accent); padding-left: 20px; font-weight: 500; }

/* cta */
.cta { background: var(--dark); color: #fafafa; text-align: center; }
.cta .wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 64px; padding-bottom: 64px; }
.cta h2 { font-size: 1.9rem; letter-spacing: 0.03em; }
.phone { font-family: var(--display); font-size: 2.4rem; letter-spacing: 0.08em; color: var(--accent); text-decoration: none; }
.btn { border: 1px solid var(--dark-border); padding: 14px 28px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; text-decoration: none; transition: color 0.2s, border-color 0.2s; }
.btn:hover { border-color: var(--accent); color: var(--accent); }

/* contact */
.card { border: 1px solid var(--border); background: #fff; padding: 32px; }
.card h2 { font-size: 1.6rem; letter-spacing: 0.03em; }
.card dl { margin: 24px 0 0; display: grid; gap: 20px; font-size: 0.95rem; }
.card dd { margin: 0; }
.map { border: 1px solid var(--border); min-height: 320px; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* footer */
.site-footer { background: var(--dark); color: #fafafa; }
.footer-grid { display: grid; gap: 40px; padding: 64px 0; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h3 { font-size: 1.25rem; letter-spacing: 0.03em; }
.footer-grid p { margin: 4px 0 0; font-size: 0.9rem; color: var(--dark-muted); }
.footer-grid a { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--dark-border); }
.footer-bottom p { margin: 0; padding: 24px 0; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dark-muted); }

@media (max-width: 700px) {
  .nav { gap: 18px; }
  .nav a { font-size: 0.65rem; letter-spacing: 0.08em; }
  .site-header .wrap { height: auto; padding-top: 16px; padding-bottom: 16px; flex-direction: column; gap: 12px; }
}

/* =========================================================
   RESPONSYWNOŚĆ – telefon / tablet / mały laptop
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}

/* Tablet i mniejsze laptopy */
@media (max-width: 900px) {
  .wrap {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .site-header .wrap {
    min-height: 72px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 18px;
  }

  .nav {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero img {
    height: 56vh;
    min-height: 390px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split.reverse .split-img {
    order: 0;
  }

  .split-img img {
    max-height: 520px;
  }

  .lead {
    max-width: none;
  }

  .footer-grid {
    padding: 52px 0;
  }
}

/* Telefony */
@media (max-width: 700px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .site-header {
    position: relative;
  }

  .site-header .wrap {
    align-items: stretch;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo {
    align-self: center;
    font-size: 1.55rem;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--dark-border);
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 11px 8px;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.09em;
    border-bottom: 1px solid var(--dark-border);
  }

  .hero img {
    height: 52vh;
    min-height: 330px;
    max-height: 520px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
    letter-spacing: 0.08em;
  }

  .hero-content p {
    margin-top: 14px;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.22em;
  }

  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .section-title::after {
    margin-top: 14px;
  }

  .eyebrow {
    margin-top: 24px;
    line-height: 1.5;
  }

  .lead {
    margin-top: 24px;
  }

  .list {
    margin-top: 20px;
    gap: 12px;
  }

  .list.two-col {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 28px;
  }

  .split-img img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .card {
    padding: 24px 20px;
  }

  .card dl {
    gap: 16px;
    overflow-wrap: anywhere;
  }

  .map,
  .map iframe {
    min-height: 280px;
  }

  .cta .wrap {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 16px;
  }

  .cta h2 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .phone {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
  }

  .btn {
    width: 100%;
    max-width: 330px;
    padding: 14px 18px;
    text-align: center;
    line-height: 1.4;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }

  .footer-bottom p {
    padding: 20px 0;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

/* Bardzo małe telefony */
@media (max-width: 380px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo {
    font-size: 1.4rem;
    letter-spacing: 0.14em;
  }

  .nav a {
    font-size: 0.68rem;
  }

  .hero img {
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .card {
    padding: 20px 16px;
  }
}

/* =========================================================
   ROZBUDOWANA STRONA GŁÓWNA
   ========================================================= */
.hero-content { max-width: 1100px; margin: 0 auto; }
.hero-kicker { margin: 0 0 12px !important; color: #fff !important; letter-spacing: .22em !important; }
.hero-subtitle { max-width: 760px; margin: 16px auto 0 !important; color: rgba(255,255,255,.9) !important; letter-spacing: .08em !important; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: transparent; color: #fff; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 25px; padding-bottom: 25px; }
.trust-grid > div { text-align: center; padding: 8px 18px; border-right: 1px solid var(--border); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 400; color: var(--accent); }
.trust-grid span { display: block; margin-top: 4px; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-fg); }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.intro-grid .eyebrow { margin-top: 0; }
.lead.large { font-size: 1.15rem; color: var(--fg); }

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.service-card { background: #fff; border: 1px solid var(--border); padding: 30px; min-height: 290px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(192,57,47,.45); box-shadow: 0 18px 40px -26px rgba(0,0,0,.55); }
.service-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--accent); color: var(--accent); font-size: .75rem; letter-spacing: .08em; }
.service-card h3 { margin-top: 22px; font-size: 1.55rem; }
.service-card p { margin: 14px 0 0; color: var(--muted-fg); font-size: .94rem; }

.visual-story .split { gap: 70px; }
.media-stack { position: relative; }
.media-main { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 0 24px 50px -28px rgba(0,0,0,.65); }
.media-caption { position: absolute; left: 24px; right: 24px; bottom: 20px; padding: 14px 18px; background: rgba(38,38,41,.88); color: #fff; font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; backdrop-filter: blur(4px); }
.text-link { display: inline-block; margin-top: 28px; color: var(--accent); text-decoration: none; font-weight: 500; }
.text-link:hover { text-decoration: underline; }

.dark-section { background: var(--dark); color: #fff; }
.dark-section .lead, .dark-section p { color: var(--dark-muted); }
.dark-section .section-title { color: #fff; }
.dark-section .list li { color: #f3f3f3; }
.dark-section .eyebrow { color: var(--accent); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--border); }
.process-step { position: relative; padding: 32px 24px 8px 0; }
.process-step:not(:last-child) { border-right: 1px solid var(--border); padding-right: 24px; margin-right: 24px; }
.process-step span { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; align-items: center; justify-content: center; background: var(--dark); color: #fff; font-size: .75rem; }
.process-step h3 { margin-top: 20px; font-size: 1.45rem; }
.process-step p { color: var(--muted-fg); font-size: .92rem; }

.gallery-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.gallery-intro { margin: 0; color: var(--muted-fg); max-width: 55ch; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; gap: 14px; margin-top: 42px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: #111; cursor: zoom-in; text-align: left; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 55%); }
.gallery-item:hover img { transform: scale(1.035); opacity: .92; }
.gallery-item span { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 20px; color: #fff; }
.gallery-item strong { display: block; font-family: var(--display); font-size: 1.55rem; font-weight: 400; }
.gallery-item small { display: block; margin-top: 3px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); }
.gallery-wide { grid-row: span 2; }

.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 45px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.reasons-grid article { padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reasons-grid h3 { font-size: 1.55rem; }
.reasons-grid p { margin-bottom: 0; color: var(--muted-fg); }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); padding: 0; }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 42px 22px 0; position: relative; font-family: var(--display); font-size: 1.25rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-family: var(--sans); color: var(--accent); font-size: 1.5rem; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -5px 0 24px; color: var(--muted-fg); max-width: 65ch; }

.cta-rich { position: relative; overflow: hidden; }
.cta-rich .wrap { position: relative; max-width: none; min-height: 480px; padding: 0; display: block; }
.cta-rich img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-rich .cta-overlay { position: absolute; inset: 0; background: rgba(22,22,24,.78); }
.cta-rich .cta-content { position: relative; z-index: 2; min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; }
.cta-rich .cta-content h2 { max-width: 760px; font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-rich .eyebrow { margin-top: 0; color: #fff; }
.cta-rich .phone { margin-top: 10px; }

.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(0,0,0,.92); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; object-fit: contain; box-shadow: 0 20px 70px rgba(0,0,0,.45); }
.lightbox-close { position: fixed; top: 16px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.3); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.no-scroll { overflow: hidden; }

@media (max-width: 1000px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; margin-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--border); }
  .nav { gap: 18px; }
}

@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .intro-grid, .gallery-heading, .faq-layout { grid-template-columns: 1fr; gap: 26px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-wide { grid-row: span 1; }
  .reasons-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; border-top: 0; }
  .process-step, .process-step:not(:last-child) { border-right: 0; border-top: 1px solid var(--border); padding: 24px 0; margin: 0; }
  .hero-actions { flex-direction: column; width: min(100%, 340px); }
  .hero-actions .btn { width: 100%; }
  .hero-subtitle { font-size: .72rem !important; letter-spacing: .06em !important; }
  .media-caption { left: 12px; right: 12px; bottom: 12px; }
  .cta-rich .wrap, .cta-rich .cta-content { min-height: 420px; }
}

@media (max-width: 430px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-item span { left: 16px; right: 16px; bottom: 14px; }
  .reasons-grid article { padding: 24px 20px; }
}

/* Wersja: wszystkie czcionki czarne */
:root {
  --fg: #000000;
  --muted-fg: #000000;
  --dark-muted: #000000;
}
body, body * { color: #000000 !important; }
/* Tła przyciemniamy/usuwamy tam, gdzie czarny tekst wymaga kontrastu */
.cta, .site-footer, .dark-section { background: #ffffff !important; }

/* Ciemne górne menu – jasne napisy zapewniają czytelny kontrast */
.site-header {
  background: #262629 !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.16);
}
.site-header .logo,
.site-header .nav a {
  color: #ffffff !important;
}
.site-header .nav a:hover,
.site-header .nav a[aria-current="page"] {
  color: var(--accent) !important;
}
@media (max-width: 700px) {
  .site-header .nav,
  .site-header .nav a {
    border-color: rgba(255, 255, 255, 0.16) !important;
  }
}
.hero-overlay { background: rgba(38, 38, 41, 0.45) !important; }
.cta-rich .cta-overlay { background: rgba(255,255,255,.72) !important; }
.media-caption { background: rgba(255,255,255,.88) !important; }
.gallery-item::after { background: linear-gradient(to top, rgba(255,255,255,.85), transparent 65%) !important; }
.btn-accent { background: #ffffff !important; color: #000000 !important; border-color: #000000 !important; }
.btn { border-color: #000000 !important; }
.process-step span, .service-icon { background: #ffffff !important; color: #000000 !important; border-color: #000000 !important; }
.lightbox { background: rgba(255,255,255,.96) !important; }
.lightbox-close { background: #ffffff !important; color: #000000 !important; border-color: #000000 !important; }

/* Pasek cookies widoczny od razu na stronie głównej */
.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  padding: 16px 24px;
  background: #262629;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.24);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__content {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner__content p {
  margin: 0;
  color: #ffffff !important;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-banner__button {
  flex: 0 0 auto;
  min-width: 130px;
  padding: 12px 22px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000000 !important;
  font: 600 0.85rem var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (max-width: 650px) {
  .cookie-banner { padding: 14px 16px; }
  .cookie-banner__content { align-items: stretch; flex-direction: column; gap: 12px; }
  .cookie-banner__button { width: 100%; }
}
