:root{
  --ps-simple-ink:#171718;     /* grafit */
  --ps-simple-muted: rgba(23,23,24,.72);
  --ps-simple-line: rgba(23,23,24,.14);
}

/* Simple: białe tło i czytelny tekst */
body.ps-simple-site{
  background:#fff;
  color:var(--ps-simple-ink);
}

/* HEADER na białym: grafit */
.ps-simple-header .ps-header__bar{
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:0 1px 0 rgba(0,0,0,.08);
  color:var(--ps-simple-ink);
}

/* burger w grafit */
body.ps-simple-site .ps-burger{ color:var(--ps-simple-ink); }

/* submenu obok hamburgera */
.ps-simple-header__right{
  gap:18px;
}

.ps-simple-subnav{ display:block; }
.ps-simple-subnav__list{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  display:flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
}
.ps-simple-subnav__item{
  display:flex;
  align-items:center;
}
.ps-simple-subnav__item + .ps-simple-subnav__item::before{
  content:"|";
  color:var(--ps-simple-ink);
  opacity:.9;
  margin-right:14px;
}

.ps-simple-subnav__link{
  font-family: "Teko", sans-serif !important;
  font-weight:300 !important;
  font-size:22px;
  letter-spacing:.03em;
  text-decoration:none !important;
  color:var(--ps-simple-ink) !important;
  line-height:1;
}
.ps-simple-subnav__item.is-active .ps-simple-subnav__link{
  font-weight:500 !important;
}
.ps-simple-subnav__link:hover,
.ps-simple-subnav__link:focus-visible{
  text-decoration:underline !important;
  text-underline-offset:4px;
}

/* mobile: znika submenu, zostaje tylko hamburger */
@media (max-width: 991px){
  .ps-simple-subnav{ display:none !important; }
}

/* A11Y FAB na białym — dalej czytelny */
.ps-simple-a11yfab{
  background:rgba(23,23,24,.10) !important;
}
.ps-simple-a11yfab i{
  -webkit-text-stroke:0 !important;
  text-shadow:none !important;
  color:var(--ps-simple-ink) !important;
}

/* MAIN */
.ps-simple-main{
  padding-top:120px; /* miejsce na fixed header */
}
.ps-simple-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.ps-simple-container--wide{
  max-width:none;
  padding:0; /* wide bez paddingów */
}

/* Breadcrumb */
.ps-simple-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: "Poppins", sans-serif;
  font-weight:300;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ps-simple-muted);
  margin:0 0 26px;
}
.ps-simple-breadcrumb a{
  color:inherit;
  text-decoration:none;
}
.ps-simple-breadcrumb a:hover,
.ps-simple-breadcrumb a:focus-visible{
  text-decoration:underline;
  text-underline-offset:3px;
}
.ps-simple-breadcrumb__sep{ opacity:.6; }

/* Tytuł */
.ps-simple-title{
  margin:0 0 28px;
  font-family: "Teko", sans-serif;
  font-weight:500;
  letter-spacing:.01em;
  line-height:.95;
  font-size:clamp(44px, 5.2vw, 84px);
  color:var(--ps-simple-ink);
}

/* Content */
.ps-simple-content{
  font-family: "Poppins", sans-serif;
  font-weight:300;
  font-size:16px;
  line-height:1.7;
  color:var(--ps-simple-ink);
}
.ps-simple-content--wide{
  padding:0; /* w wide trzymamy czysto */
}

/* mały separator (opcjonalny) */
.ps-simple-content hr{
  border:0;
  height:1px;
  background:var(--ps-simple-line);
  margin:28px 0;
}

/* responsywność kontenera */
@media (max-width: 640px){
  .ps-simple-container{ padding:0 16px; }
  .ps-simple-breadcrumb{ letter-spacing:.12em; }
}
